/* Base Styles */
:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --text-color: #1f2937;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --card-bg: #ffffff;
    --body-bg: #f9fafb;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--body-bg);
    line-height: 1.5;
}

/* Layout */
.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    flex: 1;
}

.footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-content {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Auth Components */
.auth-container {
    max-width: 400px;
    margin: 2rem auto;
    width: 100%;
}

.auth-card {
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem 1.5rem 0.5rem;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card-content {
    padding: 1.5rem;
}

/* Form Elements */
.auth-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.15s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.btn-full {
    width: 100%;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
}

.divider-text {
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Google Button */
.google-icon {
    margin-right: 0.5rem;
}

/* Sign Up Link */
.signup-link {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
}

.signup-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Cancel Button Spacing */
.cancel-button {
    margin-top: 1rem;
}

/* Account Menu Styling */
.account-menu {
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.menu-header {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.menu-grid {
    display: grid;
    gap: 0.75rem;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    background-color: #f9fafb;
    transition: all 0.2s ease;
}

.menu-item:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 0.375rem;
    background-color: #e5e7eb;
    margin-right: 0.75rem;
    color: #4b5563;
}

.menu-item:hover .menu-icon {
    background-color: var(--primary-color);
    color: white;
}

.menu-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .auth-container {
        margin: 1rem auto;
    }

    .card-header {
        padding: 1.25rem 1.25rem 0.25rem;
    }

    .card-content {
        padding: 1.25rem;
    }
    .menu-item {
        padding: 0.625rem;
    }

    .menu-icon {
        width: 32px;
        height: 32px;
    }
}
.link{
    color: #007bff;
    text-decoration: none;
}