/* Auth Forms Styling with VSCode-inspired theme */

/* Typography */
.auth-container {
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.6;
}

/* VSCode-inspired color palette */
:root {
    --vscode-bg: #1e1e1e;
    --vscode-sidebar: #252526;
    --vscode-editor: #1e1e1e;
    --vscode-text: #d4d4d4;
    --vscode-highlight: #264f78;
    --vscode-selection: #3a3d41;
    --vscode-button: #0e639c;
    --vscode-button-hover: #1177bb;
    --vscode-input-bg: #3c3c3c;
    --vscode-input-border: #5a5a5a;
    --vscode-link: #569cd6;
}

/* Form containers */
.form-signin {
    background-color: var(--vscode-sidebar);
    border: 1px solid #3e3e42;
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

/* Form elements */
input[type="text"], 
input[type="email"], 
input[type="password"] {
    background-color: var(--vscode-input-bg);
    border: 1px solid var(--vscode-input-border);
    color: var(--vscode-text);
    padding: 0.75rem;
    width: 100%;
    border-radius: 3px;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1rem;
}

input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="password"]:focus {
    outline: none;
    border-color: var(--vscode-button);
    box-shadow: 0 0 0 2px rgba(14, 99, 156, 0.25);
}

/* Labels */
label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--vscode-text);
    font-weight: 500;
}

/* Buttons */
.button {
    background-color: var(--vscode-button);
    border: none;
    color: white;
    padding: 1rem 1.5rem; /* Increased vertical padding */
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s, border 0.2s;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.05rem; /* Slightly larger font */
    font-weight: 600; /* Bolder text */
    width: 100%;
    margin: 1rem 0; /* Added margin for better spacing */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); /* Added subtle shadow */
    letter-spacing: 0.03em; /* Slightly expanded letter spacing */
}

.button:hover {
    background-color: var(--vscode-button-hover);
    border: 1px solid var(--vscode-button);
    box-shadow: 0 3px 6px rgba(14, 99, 156, 0.4);
    transform: translateY(-1px); /* Subtle lift effect on hover */
}

/* Links */
a {
    color: var(--vscode-link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Value proposition area */
.value-prop {
    color: var(--vscode-text);
    padding: 2rem;
}

.value-prop h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.value-prop .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Benefits list */
.benefit-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(38, 79, 120, 0.1);
    border-left: 4px solid var(--vscode-button);
    border-radius: 0 3px 3px 0;
}

.benefit-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

/* Social login options */
.social-options {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #3e3e42;
    text-align: center;
}

.social-auth {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.social-auth-btn {
    padding: 0.85rem 1.5rem; /* Increased padding */
    border-radius: 3px;
    font-weight: 600; /* Bolder text */
    font-size: 1rem; /* Slightly larger font */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    min-width: 180px; /* Wider button */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Added subtle shadow */
}

.social-auth-btn i {
    margin-right: 0.5rem;
}

.social-auth-btn.google-btn {
    background-color: #4285f4;
    color: white;
}

.social-auth-btn.google-btn:hover {
    background-color: #3367d6;
}

/* Footer links */
.footer-links {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #3e3e42;
    font-size: 0.85rem;
    text-align: center;
}

/* Helper classes */
.mt-3 {
    margin-top: 1.5rem;
}
