/* Base Styles */
:root {
    --primary-color: #e8c8c8; /* Soft blush */
    --secondary-color: #7a6a5b; /* Muted taupe */
    --text-color: #333;
    --light-text: #777;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #faf9f7;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('assets/img/background-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* Login Wrapper */
.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Login Container */
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logo */
.logo-container {
    margin-bottom: 25px;
}

.monogram {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Welcome Message */
.welcome-message {
    margin-bottom: 30px;
}

.welcome-message h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.welcome-message p {
    font-size: 1rem;
    color: var(--light-text);
    letter-spacing: 0.5px;
}

/* Google Sign-In Button */
.google-signin-btn {
    width: 100%;
    padding: 12px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.google-signin-btn:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.google-icon {
    width: 18px;
    height: 18px;
}


/* Different Account Link */
.different-account-link {
    margin-top: 15px;
    text-align: center;
}

.different-account-link a {
    color: var(--light-text);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.different-account-link a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Privacy Note */
.privacy-note {
    max-width: 400px;
    margin-top: 25px;
    padding: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--light-text);
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .login-container {
        padding: 30px 20px;
    }
    
    .welcome-message h1 {
        font-size: 1.5rem;
    }
    
    .monogram {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 25px 15px;
    }
    
    .welcome-message h1 {
        font-size: 1.3rem;
    }
    
    .privacy-note {
        font-size: 0.8rem;
    }
}