/* Account Login Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow-x: hidden;
}

.login-main {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-container {
    position: relative;
    z-index: 1;
}

.signup-rectangle {
    width: 500px;
    min-height: 600px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.login-rectangle {
    width: 550px;
    min-height: 550px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.login-form-container {
    width: 350px;
    text-align: center;
    padding: 20px;
}



.login-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form-input::placeholder {
    color: #666;
    font-style: italic;
}

.forgot-password {
    text-align: right;
    margin-top: -10px;
}

.forgot-link {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.forgot-link:hover {
    color: #8b5cf6;
}

.login-button {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.form-switch {
    margin-top: 15px;
    text-align: center;
}

.form-switch p {
    color: #fff;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.switch-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.switch-link:hover {
    color: #ec4899;
}

/* Signup Form Styles */
.signup-rectangle {
    width: 500px;
    min-height: 600px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.signup-form-container {
    width: 420px;
    text-align: center;
    padding: 40px;
}

.signup-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.signup-button {
    background: #B8336A;
    color: white;
    border: 3px solid #000;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.signup-button:hover {
    background: #2c2c2c;
    color: #B8336A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Radio button styles */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
}

.radio-option input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.radio-option input[type="radio"]:checked {
    border-color: #fff;
    background: #fff;
}

.radio-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
}

.radio-label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-main {
        padding: 30px 15px;
    }

    .login-rectangle,
    .signup-rectangle {
        width: min(450px, 95vw);
        min-height: auto;
        padding: 20px;
    }

    .login-form-container {
        width: 100%;
        max-width: 350px;
        padding: 15px;
    }

    .signup-form-container {
        width: 100%;
        max-width: 380px;
        padding: 25px 20px;
    }

    .login-title,
    .signup-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .radio-option {
        width: 100%;
        justify-content: center;
    }

    .form-switch p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .login-main {
        padding: 20px 10px;
        min-height: calc(100vh - 140px);
    }

    .login-rectangle,
    .signup-rectangle {
        width: min(350px, 98vw);
        border-radius: 20px;
        padding: 15px;
    }

    .login-form-container {
        width: 100%;
        max-width: 280px;
        padding: 10px;
    }

    .signup-form-container {
        width: 100%;
        max-width: 300px;
        padding: 20px 15px;
    }

    .login-title,
    .signup-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .form-input {
        padding: 10px 14px;
        font-size: 14px;
    }

    .form-label {
        font-size: 13px;
    }

    .login-button, 
    .signup-button {
        padding: 14px 20px;
        font-size: 14px;
        min-height: 48px;
    }

    .form-switch p {
        font-size: 11px;
        line-height: 1.6;
    }

    .forgot-link {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .login-rectangle,
    .signup-rectangle {
        width: 95vw;
        padding: 12px;
    }

    .login-form-container,
    .signup-form-container {
        max-width: 100%;
        padding: 10px;
    }

    .login-title,
    .signup-title {
        font-size: 1.3rem;
    }

    .form-input {
        padding: 9px 12px;
        font-size: 13px;
    }
}




