.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f8fafc;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.auth-card h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.auth-card > p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    color: #1f2937;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #9ca3af;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.submit-btn {
    padding: 0.85rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    cursor: pointer;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.auth-footer a {
    color: #10b981;
    font-weight: 500;
    text-decoration: none;
}

.error-message {
    padding: 0.75rem 1rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    color: #dc2626;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Responsive Grid Helpers */
.input-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 600px) {
    .input-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.flex-stack-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 600px) {
    .flex-stack-mobile {
        flex-direction: row;
        align-items: center;
    }
}

/* Responsive Grid for 2 columns */
.responsive-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 600px) {
    .responsive-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* Glass Card for Skills Section */
.glass-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}
