/* static/css/style.css */

body {
    background-color: #f0f2f5; /* Fondo gris claro para el tema light */
}

/* ============================================= */
/* == NUEVOS ESTILOS PARA TEMA CLARO (LIGHT)  == */
/* ============================================= */
.light-card {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.light-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0d6efd; /* Azul principal de Bootstrap */
    color: white;
    font-size: 30px;
}

.light-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #212529;
}

.light-subtitle {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 16px;
}

.light-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #495057;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    background-color: #fff;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.light-button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    background-color: #0d6efd;
    transition: background-color 0.2s;
}

.light-button:hover {
    background-color: #0b5ed7;
}

.light-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #6c757d;
}

.light-footer a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.light-footer a:hover {
    text-decoration: underline;
}


/* ============================================= */
/* == ESTILOS ANTIGUOS PARA TEMA OSCURO (DARK) == */
/* ============================================= */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    width: 100%;
    min-height: 80vh;
}

.auth-card {
    background-color: #212529;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 420px;
    text-align: center;
    border: 1px solid #343a40;
}

.auth-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #8e2de2, #4a00e0);
    color: white;
    font-size: 36px;
}

.auth-icon-wrapper.green {
     background: linear-gradient(145deg, #1ed760, #04a340);
}

.auth-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: #adb5bd;
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border-radius: 12px;
    border: 1px solid #495057;
    background-color: #343a40;
    color: #f8f9fa;
    font-size: 16px;
}

.input-group input:focus {
    outline: none;
    border-color: #8e2de2;
    box-shadow: 0 0 0 3px rgba(142, 45, 226, 0.2);
}

.auth-button {
    padding: 15px;
    border-radius: 12px;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: white;
}

.auth-button.gradient {
    background: linear-gradient(145deg, #a450e5, #6a1f9e);
}

.auth-button.whatsapp {
    background: linear-gradient(145deg, #25d366, #128c7e);
}

.profile-details {
    margin-top: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-item {
    background-color: #343a40;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.item-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #495057;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: #ced4da;
    font-size: 18px;
}

.item-text {
    display: flex;
    flex-direction: column;
}

.item-label {
    font-size: 12px;
    color: #adb5bd;
}

.item-data {
    font-size: 16px;
    font-weight: 500;
    color: #f8f9fa;
}