:root {
    --primary-red: #E13437;
    --dark-red: #A82E31;
    --riden-red: #E13437;
    --bg-gray: #928B8B;
    --light-pink: #FFF4F4;
    --input-border: #CCCCCC;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --font-main: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-gray);
    font-family: var(--font-main);
    color: var(--text-dark);
}

.login-container {
    width: 100%;
    max-width: 900px;
}

/* Header Button */
.btn-top-sign-in {
    background-color: var(--dark-red);
    color: white;
    border: none;
    padding: 12px 60px;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-top-sign-in:hover {
    transform: translateY(-2px);
    background-color: #922629;
}

/* Main Card */
.main-card {
    border: none;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background-color: white;
}

/* Left Illustration Side */
.illustration-side {
    background-color: var(--light-pink);
    min-height: 400px;
}

.brand-name {
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: -1px;
    margin-top: 40px;
    color: #000;
}

.illustration-wrapper {
    width: 100%;
    max-width: 350px;
}

.hero-img {
    width: 100%;
    height: auto;
}

/* Right Form Side */
.form-side {
    background-color: white;
}

.welcome-text {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.sub-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.premium-input {
    border: 1.5px solid var(--input-border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.premium-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(225, 52, 55, 0.1);
    outline: none;
}

.premium-input::placeholder {
    color: #BBB;
}

.forgot-password {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.forgot-password:hover {
    opacity: 0.8;
}

.btn-login {
    background-color: var(--riden-red);
    /* Bright red like in design */
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-login:hover {
    background-color: #E60000;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.btn-login:active {
    transform: scale(0.98);
}

/* Password Toggle Styles */
.password-field-wrapper {
    position: relative;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: var(--primary-red);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .brand-name {
        font-size: 2.5rem;
        margin-top: 20px;
    }

    .btn-top-sign-in {
        padding: 8px 40px;
        font-size: 1.2rem;
    }

    .illustration-side {
        min-height: auto;
        padding-bottom: 0 !important;
    }

    .card {
        border-radius: 20px;
    }
}
