/* Login Page Specifics */
.login-page {
    background-color: #0c0c0c;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
}

.login-wrapper {
    display: flex;
    width: 900px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Left Side Image Section */
.login-image {
    flex: 1;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&q=80&w=1000'); /* You can replace this with your own bean photo */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.overlay-text h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 5px;
}

.overlay-text h1 span { color: #d4af37; }
.overlay-text p { color: #ddd; font-style: italic; }

/* Right Side Form Section */
.login-form-container {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-box h2 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.form-subtitle {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    color: #bbb;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.input-group input {
    width: 100%;
    padding: 12px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    outline: none;
    transition: border 0.3s;
}

.input-group input:focus {
    border-color: #d4af37;
}

.form-options {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 25px;
}

.form-options a {
    color: #d4af37;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.login-btn:hover {
    background: #f1c40f;
    transform: scale(1.02);
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
}

.signup-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.back-home {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #555;
    text-decoration: none;
    font-size: 0.8rem;
}

.back-home:hover { color: #d4af37; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
        width: 90%;
        height: auto;
    }
    .login-image { height: 150px; }
}