﻿/* =====================================================
   BODY
===================================================== */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f8ff;
    overflow: hidden;
}

.main-wrapper {
    height: 100vh;
}

/* =====================================================
   LEFT PANEL
===================================================== */

.left-panel {
    background: linear-gradient(to right, #dfe8f5, #4b92e6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.doctor-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
}

    .doctor-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* =====================================================
   RIGHT PANEL
===================================================== */

.right-panel {
    background: #dfe8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.form-container {
    width: 100%;
    max-width: 380px;
}

/* =====================================================
   LOGO
===================================================== */

.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

    .logo-section img {
        width: 90px;
    }

.brand-name {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

/* =====================================================
   SWITCH BUTTONS
===================================================== */

.switch-box {
    background: white;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    margin-bottom: 35px;
    padding: 3px;
}

    .switch-box a {
        width: 50%;
        text-align: center;
        text-decoration: none;
        padding: 10px;
        color: #4a4dff;
        font-weight: 500;
        border-radius: 30px;
        transition: 0.3s;
    }

        .switch-box a.active {
            background: #4a4dff;
            color: white;
        }

/* =====================================================
   INPUT
===================================================== */

.input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.custom-input {
    height: 48px;
    border-radius: 30px;
    border: none;
    padding-left: 45px;
    padding-right: 45px;
    font-size: 14px;
}

    .custom-input:focus {
        box-shadow: none;
        outline: none;
    }

.input-icon {
    position: absolute;
    left: 16px;
    top: 14px;
    color: #666;
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 14px;
    color: #666;
    cursor: pointer;
}

/* =====================================================
   PASSWORD RULE
===================================================== */

.password-rule {
    font-size: 11px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.4;
}



/* =====================================================
   LOGIN BUTTON
===================================================== */

.login-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

    .login-btn-wrapper .btn-login {
        width: 200px !important;
        height: 42px !important;
        border: none !important;
        border-radius: 25px !important;
        background-color: #4a4dff !important;
        color: #FFFFFF !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        box-shadow: none !important;
        outline: none !important;
        transition: none !important;
    }

        /* HOVER */

        .login-btn-wrapper .btn-login:hover {
            background-color: #4a4dff !important;
            color: #FFFFFF !important;
            transform: none !important;
        }

        /* FOCUS */

        .login-btn-wrapper .btn-login:focus {
            background-color: #4a4dff !important;
            color: #FFFFFF !important;
            box-shadow: none !important;
            outline: none !important;
        }

        /* ACTIVE */

        .login-btn-wrapper .btn-login:active {
            background-color: #4a4dff !important;
            color: #FFFFFF !important;
        }
/* =====================================================
   OR DIVIDER
===================================================== */

.or-divider {
    position: relative;
    text-align: center;
    margin: 28px 0;
}

    .or-divider::before,
    .or-divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 42%;
        height: 1px;
        background: #bcbcbc;
    }

    .or-divider::before {
        left: 0;
    }

    .or-divider::after {
        right: 0;
    }

    .or-divider span {
        background: #dfe8ff;
        padding: 0 10px;
        font-size: 13px;
        color: #666;
    }

/* =====================================================
   OTP LINK
===================================================== */

.otp-link {
    text-decoration: none;
    color: #3f46ff;
    font-size: 14px;
    font-weight: 500;
}
/* =====================================================
   FORGOT PASSWORD
===================================================== */

.forgot-password {
    font-size: 14px;
    color: #4b6fff;
    text-decoration: none;
    font-weight: 500;
}

    .forgot-password:hover {
        text-decoration: underline;
    }
    
    /* =====================================================
   HIDE PASSWORD EYE
===================================================== */

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

input[type="password"]::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
}
