﻿/* ============================
   RESET Y CONTENEDOR PRINCIPAL
   ============================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
}

body, html {
    height: 100%;
    background: linear-gradient(135deg, #eef2ff 0%, #ffe2e2 100%);
}

.container {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================
        TARJETA LOGIN
   ============================ */
.card {
    width: 390px;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

    .card h1 {
        text-align: center;
        font-size: 26px;
        font-weight: 700;
        color: #101828;
        margin-bottom: 5px;
    }

    .card p.sub {
        text-align: center;
        color: #4a5565;
        font-size: 14px;
        margin-bottom: 20px;
    }

/* ============================
        INPUTS
   ============================ */
label {
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
}

.input-box {
    margin-top: 5px;
    background: #f3f3f5;
    border-radius: 7px;
    padding: 8px 12px;
}

.input-box input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
}

.container14 {
    width: 100%;
    display: flex;
    align-items: center;
}

.container14 input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12.3px;
    color: #717182;
}

/* ============================
          BOTONES
   ============================ */
.btn-login {
    margin-top: 10px;
    width: 100%;
    border: none;
    background: #030213;
    color: #fff;
    padding: 10px 0;
    border-radius: 7px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-login:hover {
        background: #1e1b3a;
    }

.btn-forgot {
    margin-top: 10px;
    width: 100%;
    border: none;
    background: transparent;
    color: #030213;
    padding: 8px 0;
    font-weight: 600;
    cursor: pointer;
}

/* ============================================
   ICONOS DENTRO DEL INPUT (EMAIL Y PASSWORD)
   ============================================ */


/* Asegura que .container11 se comporte como contenedor */
.container11 {
    position: relative;
    width: 100%;
}

/* Caja del input de Figma */
.container11 .input {
    background: #f3f3f5;
    border-radius: 6.75px;
    height: 31.5px;
    position: relative;
    overflow: hidden;
    padding-left: 35px; /* Espacio para icono de la izquierda */
    padding-right: 35px; /* Espacio para icono derecho (contraseña) */
    display: flex;
    align-items: center;
}

/* Input interno */
.container11 input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 12.3px;
    color: #717182;
}

/* Ícono de email */
.svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    pointer-events: none;
}

/* Ícono del candado */
.svg2 {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    pointer-events: none;
}

/* Botón del ojo */
.svg3 {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen del ojo */
.svg3 {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Ícono de email */
.container11 img.svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    filter: grayscale(100%);
    opacity: 0.8;
}

/* Ícono del candado */
.container11 img.svg2 {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    filter: grayscale(100%);
    opacity: 0.8;
}

/* Ícono del ojo (mostrar/ocultar contraseña) */
.container11 .button img.svg3 {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
    filter: grayscale(100%);
    opacity: 0.8;
}

/* ============================
       TEXTO FINAL
   ============================ */
.footer-text {
    margin-top: 15px;
    font-size: 13px;
    color: #6a7282;
    text-align: center;
}

/* Centrar TODA la vista de login en la página */
._1536-w-default {
    min-height: calc(100vh - 120px); /* deja espacio para el footer */
    display: flex;
    align-items: center; /* centrar vertical */
    justify-content: center; /* centrar horizontal */
    padding: 20px 0; /* pequeño espacio para no pegarlo a los bordes */
}

/* Evitar que el diseño Figma se salga o quede flotando */
._1536-w-default {
    width: 100%;
    max-width: 1536px; /* tu tamaño original */
    margin: 0 auto;
}

