/*login*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('/assets/image/fondomisev.png') no-repeat center center;  
    background-size:cover;
    background-position:center;
}

.login{
    width: 420px;
    background-color: transparent;
    border: 2px solid rgb(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    color:white;
    border-radius: 10px;
    padding: 30px 40px;
}

.login h1 {
    font-size: 36px;
    text-align: center;
}

.login .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input{
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    border: 2px solid rgb(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #f5f5f5;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder{
    color: #ffffff;
}

.input-box img{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    
}

.login .remember-forgot{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin-top: -15px 0 15px;
}

.remember-forgot label input{
    color: #f7f7f7;
    text-decoration: underline;
   
}

.remember-forgot a{
    color: #ffffff;
    text-decoration: none;
    padding-bottom: 15px;
  
}
.remember-forgot a:hover{
    color: rgb(241, 241, 241);
    text-decoration: underline;
}

.login .btn{
    width: 100%;
    height: 45px;
    background-color: rgb(255, 255, 255);
    color:#333;
    border: none;
    outline: none;
    box-shadow: 0 0 10px rgb(0, 0, 0, .1);
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}


.login .register-link{
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}

.register-link p a{
    color: white;    
    text-decoration: none;
    font-weight: 600;
}

.register-link p a:hover{
    text-decoration: underline;    
}


/* =========================================
   🔹 REGISTER / FORGOT PASSWORD
========================================= */

.auth-container {

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;

    background:
        url('/assets/image/fondomisev.png')
        no-repeat center center;

    background-size: cover;
}

.auth-card {

    width: 420px;

    background-color: transparent;

    border: 2px solid rgb(255, 255, 255, .2);

    backdrop-filter: blur(10px);

    color: white;

    border-radius: 10px;

    padding: 30px 40px;
}

.auth-card h1 {

    font-size: 32px;

    text-align: center;

    margin-bottom: 20px;
}

/* 🔹 INPUTS */

.auth-card .input-box {

    position: relative;

    width: 100%;

    height: 50px;

    margin: 25px 0;
}

.auth-card .input-box input {

    width: 100%;
    height: 100%;

    background-color: transparent;

    border: none;
    outline: none;

    border: 2px solid
        rgb(255, 255, 255, .2);

    border-radius: 40px;

    font-size: 16px;

    color: #f5f5f5;

    padding: 20px;
}

.auth-card .input-box input::placeholder {

    color: white;
}

/* 🔹 BOTÓN */

.auth-card .btn {

    width: 100%;

    height: 45px;

    background-color: white;

    color: #333;

    border: none;

    outline: none;

    border-radius: 40px;

    cursor: pointer;

    font-size: 16px;

    font-weight: 600;

    margin-top: 10px;

    transition: .2s ease;
}

.auth-card .btn:hover {

    transform: scale(1.02);
}

/* 🔹 LINKS */

.auth-card a {

    display: block;

    margin-top: 20px;

    color: white;

    text-align: center;

    text-decoration: none;

    font-size: 14px;
}

.auth-card a:hover {

    text-decoration: underline;
}

.input-box select {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 40px;
    padding: 0 20px;
    font-size: 16px;
    background: #f1f1f1;
}