/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


/* ===========================
   BODY
=========================== */

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f3f5f9;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

}



/* ===========================
   CAJA LOGIN / REGISTRO
=========================== */

.login-box{

    width:100%;

    max-width:420px;

    background:white;

    padding:40px;

    border-radius:14px;

    box-shadow:0 15px 40px rgba(0,0,0,.10);

}



/* ===========================
   TITULO
=========================== */

.login-box h1{

    text-align:center;

    margin-bottom:30px;

    font-size:28px;

    color:#222;

}



/* ===========================
   INPUTS
=========================== */

.login-box input{

    width:100%;

    height:48px;

    padding:0 15px;

    margin-bottom:18px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:15px;

    outline:none;

    transition:.2s;

}


.login-box input:focus{

    border-color:#2563eb;

    box-shadow:0 0 0 3px rgba(37,99,235,.12);

}



/* ===========================
   BOTON
=========================== */

.login-box button{

    width:100%;

    height:48px;

    border:none;

    border-radius:8px;

    background:#2563eb;

    color:white;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}



.login-box button:hover{

    background:#1d4ed8;

}



/* ===========================
   ERROR
=========================== */

.error{

    background:#fee2e2;

    color:#b91c1c;

    padding:12px;

    border-radius:8px;

    margin-bottom:20px;

    text-align:center;

    font-size:14px;

}



/* ===========================
   EXITO
=========================== */

.success{

    background:#dcfce7;

    color:#166534;

    padding:14px;

    border-radius:8px;

    margin-bottom:20px;

    text-align:center;

    font-size:14px;

}



/* ===========================
   LINKS
=========================== */

.login-links{

    text-align:center;

    margin-top:22px;

    color:#666;

    font-size:14px;

}


.login-links a{

    color:#2563eb;

    font-weight:bold;

    text-decoration:none;

}


.login-links a:hover{

    text-decoration:underline;

}



/* ===========================
   LINK SIMPLE DESPUES REGISTRO
=========================== */

.login-box > a{

    display:block;

    text-align:center;

    margin-top:15px;

    color:#2563eb;

    text-decoration:none;

    font-weight:bold;

}


.login-box > a:hover{

    text-decoration:underline;

}