/* static/css/auth.css */
body.auth-body {
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.auth-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    margin: 1rem; /* Margen extra para móbiles si estuviera apretado */
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: center;
}

.col-12, .col-md-6, .col-lg-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.w-100 {
    width: 100% !important;
}

/* Custom Input and Button Styling */
.auth-input {
    padding: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    margin-top: 6px;
    box-sizing: border-box;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.auth-input:focus {
    outline: none;
    border-color: var(--color-primary-teal);
    box-shadow: 0 0 0 3px rgba(132, 197, 200, 0.2);
}

.auth-btn {
    background-color: var(--color-primary-teal);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    box-sizing: border-box;
}

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

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #333;
    border: 1px solid #cbd5e1;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.2s;
}

.google-btn:hover {
    background-color: #f8fafc;
}

.auth-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}
