.main-content-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background-color: #f8f9fa;
    min-height: 80vh;
}

.login-register-tab-list {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    background: #e9ecef;
    padding: 5px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #dee2e6;
}

.login-register-tab-list a {
    position: relative;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.login-register-tab-list a::before {
    display: none !important;
}

.login-register-tab-list a h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    transition: color 0.3s;
}

.login-register-tab-list a.active {
    background-color: #000263;
    box-shadow: 0 4px 15px rgba(0, 2, 99, 0.2);
}

.login-register-tab-list a.active h4 {
    color: #ffffff !important;
}

.login-register-tab-list a:hover:not(.active) {
    background-color: #dee2e6;
}

.button-box {
    text-align: center;
    margin-top: 15px;
}

.register-btn {
    min-width: 200px;
    padding: 10px 20px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 100%;
}

.btn-primary-theme {
    background-color: #000263;
    color: #ffffff;
    border: 1px solid #000263;
    border-radius: 50px;
    transition: all 0.3s ease;
    padding: 12px 30px;
}

.btn-primary-theme:hover {
    background-color: #ffffff;
    color: #000263;
    box-shadow: 0 5px 15px rgba(0, 2, 99, 0.15);
    transform: translateY(-2px);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    color: #444;
    font-weight: 600;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #aaa;
}

.divider:not(:empty)::before {
    margin-right: 10px;
}

.divider:not(:empty)::after {
    margin-left: 10px;
}

.external-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.external-btn,
.btn-google,
.btn-facebook {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.external-btn:hover,
.btn-google:hover,
.btn-facebook:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.external-icon {
    width: 22px;
    height: 22px;
}

.login-form-container {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.login-input-box .form-control-theme {
    border-radius: 50px;
    padding: 12px 20px;
    height: auto;
    border-color: #e9ecef;
    background-color: #fcfcfc;
}

.login-input-box .form-control-theme:focus {
    background-color: #fff;
    border-color: #000263;
    box-shadow: 0 0 0 4px rgba(0, 2, 99, 0.1);
}

@media (max-width: 767px) {
    .main-content-wrap {
        padding: 20px 0;
        min-height: auto;
    }

    .login-form-container {
        padding: 25px 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .login-register-tab-list a {
        padding: 10px 25px;
        min-width: 100px;
    }

    .login-register-tab-list a h4 {
        font-size: 14px !important;
    }
}
