/* login.php specific styles */
.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-container {
    max-width: 500px;
    width: 100%;
    padding: 50px;
    background: var(--secondary);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent);
}

.auth-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-light);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #ffcc00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 178, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.auth-link {
    text-align: center;
    margin-top: 25px;
    color: var(--text-light);
    font-size: 15px;
}

.auth-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.auth-link a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

.error-message {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    color: #f44336;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 14px;
}

.success-message {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    color: #4CAF50;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 14px;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
}

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

/* Responsive design */
@media (max-width: 600px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .auth-container {
        padding: 30px 25px;
        margin: 10px;
    }
    
    .auth-title {
        font-size: 28px;
    }
    
    .auth-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .auth-container {
        padding: 25px 20px;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .nav-left {
        font-size: 18px;
    }
    
    .film-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}
