/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #ff6b6b;       /* Main brand color (coral/pink) */
    --secondary-color: #4ecdc4;     /* Teal accent color */
    --dark-color: #292f36;          /* Dark gray for text */
    --light-color: #f7fff7;         /* Off-white background */
    --accent-color: #ffd166;        /* Yellow accent */
    --google-red: #DB4437;          /* Google brand red */
    --facebook-blue: #4267B2;       /* Facebook brand blue */
}

body {
    background-color: var(--light-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Auth Container */
.auth-container {
    display: flex;
    max-width: 1000px;
    width: 90%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Auth Card */
.auth-card {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.auth-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.auth-header h1 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.forgot-password {
    display: block;
    text-align: right;
    margin-top: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
}

.btn-google {
    background-color: var(--google-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-google:hover {
    background-color: #c23321;
    transform: translateY(-2px);
}

.btn-facebook {
    background-color: var(--facebook-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-facebook:hover {
    background-color: #365899;
    transform: translateY(-2px);
}

/* Auth Footer */
.auth-footer {
    margin-top: 30px;
    text-align: center;
}

.auth-footer p {
    color: #666;
    margin-bottom: 15px;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-login .btn {
    flex: 1;
}

/* Auth Image */
.auth-image {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        width: 95%;
    }
    
    .auth-card {
        padding: 30px;
    }
    
    .auth-image {
        display: none;
    }
    
    .social-login {
        flex-direction: column;
    }
}