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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    overflow: hidden;
}

#login-page-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
}

#left-section {
    flex: 0 0 50%;
    background-color: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

#right-section {
    flex: 0 0 50%;
    background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8ZnVybml0dXJlJTIwZGVzaWdufGVufDB8fDB8fHww');
    background-size: cover;
    background-position: center;
    position: relative;
}

#decorative-circles {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}

.circle-decoration {
    position: absolute;
    background-color: rgba(139, 115, 85, 0.3);
    border-radius: 50%;
}

#circle-top-right {
    width: 120px;
    height: 120px;
    top: 140px;
    right: 50px;
}

#circle-middle-right {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
}

#circle-bottom-right {
    width: 140px;
    height: 140px;
    bottom: 180px;
    right: 30px;
}

#login-card {
    background: white;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 420px;
}

#email-label {
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

#email-input-field {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    color: #666;
    transition: all 0.3s ease;
    margin-bottom: 28px;
}

#email-input-field:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

#email-input-field::placeholder {
    color: #999;
}

#password-label {
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

#password-input-field {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    margin-bottom: 32px;
    letter-spacing: 3px;
}

#password-input-field:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

#password-input-field::placeholder {
    letter-spacing: normal;
    color: #999;
}

#login-submit-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #313131 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

#login-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

#signup-link-wrapper {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: #666;
}

#signup-link {
    color: #17775f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#signup-link:hover {
    color: #b8941f;
    text-decoration: underline;
}

@media (max-width: 992px) {
    #login-page-wrapper {
        flex-direction: column;
    }

    #left-section {
        flex: 1;
        min-height: 100vh;
    }

    #right-section {
        display: none;
    }

    #decorative-circles {
        display: none;
    }
}

@media (max-width: 576px) {
    #login-card {
        padding: 40px 30px;
    }

    #left-section {
        padding: 20px;
    }
}