﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f8f8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(190, 150, 127, 0.15);
    overflow: hidden;
    display: flex;
    max-width: 900px;
    width: 100%;
}

.login-left {
    background: linear-gradient(135deg, #be967f 0%, #d4b5a0 100%);
    padding: 60px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.logo {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tagline {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-list {
    text-align: left;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0.95;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
}

.login-right {
    padding: 60px 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
}

.login-header {
    margin-bottom: 40px;
}

    .login-header h2 {
        color: #3a3a3a;
        font-size: 32px;
        margin-bottom: 10px;
    }

    .login-header p {
        color: #8a8a8a;
        font-size: 14px;
    }

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        color: #3a3a3a;
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .form-group input {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid #e8e8e8;
        border-radius: 10px;
        font-size: 15px;
        transition: all 0.3s ease;
        background: white;
    }

        .form-group input:focus {
            outline: none;
            border-color: #be967f;
            background: white;
            box-shadow: 0 0 0 3px rgba(190, 150, 127, 0.1);
        }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    color: #3a3a3a;
}

    .remember-me input {
        margin-right: 8px;
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: #be967f;
    }

.forgot-password {
    color: #be967f;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

    .forgot-password:hover {
        opacity: 0.8;
    }

.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #be967f 0%, #d4b5a0 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(190, 150, 127, 0.3);
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(190, 150, 127, 0.4);
    }

    .login-btn:active {
        transform: translateY(0);
    }

.divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #999;
    font-size: 14px;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #e8e8e8;
    }

    .divider span {
        padding: 0 15px;
    }

.social-login {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #3a3a3a;
    font-weight: 600;
}

    .social-btn:hover {
        border-color: #be967f;
        background: #fef9f6;
    }

.signup-link {
    text-align: center;
    margin-top: 30px;
    color: #8a8a8a;
    font-size: 14px;
}

    .signup-link a {
        color: #be967f;
        text-decoration: none;
        font-weight: 600;
    }

        .signup-link a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-left {
        padding: 40px 30px;
    }

    .login-right {
        padding: 40px 30px;
    }

    .social-login {
        flex-direction: column;
    }
}

.logo img {
    max-width: 80px;
}

.ielts-reset-toggle {
    position: absolute;
    right: 12px;
    top: 65%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
    color: #8a8a8a;
    transition: color 0.3s;
}

.loginForm {
    position: relative;
}

#logoRight {
    text-align: center!important;
    display:none;
}

@media screen and (max-width:575px) {
    #logoRight {
        display:block;
    }

    .login-left {
        display: none !important;
    }
}