.left-panel {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.login-container {
    width: 100%;
    max-width: 380px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    text-align: center;
    font-weight: 700;
    color: #0D3B66;
    font-size: 25px;
}

.login-container h3 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 400;
    color: #0D3B66;
    font-size: 14px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 15px;
}

.options a {
    color: #0D3B66;
    text-decoration: none;
    font-size: 13px;
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 40px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: #0D3B66;
}

.btn-login:hover {
    background-color: #09294a;
    color: #fff;
    transform: translateY(-3px);
}

.register {
    text-align: center;
    margin-top: 8px;
    font-size: 13px;
}

.register a {
    color: #0D3B66;
    text-decoration: none;
    font-weight: 500;
}

.register a:hover {
    text-decoration: underline;
}

.options .forgot-password {
    font-size: 13px;
    color: #0D3B66;
    text-decoration: underline transparent;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.options .forgot-password:hover {
    color: #09294a;
    text-decoration-color: #09294a;
}

.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

.logo {
    width: 90px;
    height: auto;
    margin-bottom: -10px;
}

.right-panel {
    flex: 1.1;
    background: linear-gradient(135deg, #F6FAFD, #B3CFE5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    padding: 20px;
}

.right-panel img {
    max-width: 60%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.overlay-text {
    text-align: center;
    padding: 20px;
    max-width: 500px;
    color: #0D3B66;
}

.overlay-text h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.overlay-text p {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.85;
}


.clickable {
    cursor: pointer;
}