@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color:#ededed;
}
.fondo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(../assets/Foto_panoramica.webp);
    background-size: cover;
    background-position: center; 
}
.login-form{
    width: 420px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
}
.login-form h1{
    font-size: 36px;
    text-align: center;
}
.login-correo{
    width: 100%;
    height: 50px;
    position: relative;
    margin: 30px 0 20px;
}
.login-correo input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid #fff;
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}
.login-correo input::placeholder{
    color: #fff;
}
.login-correo i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.login-form .btn{
    width: 100%;
    height: 45px;
    background: #7B1113;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(143, 143, 143, 0.192);
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.login-inicio{
    font-size: 16px;
    margin: 10px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;   
}
.login-inicio a{
    color: #7B1113;
    text-decoration: none;
    font-weight: 600;
}
.login-inicio a:hover{
    text-decoration: underline;
}

.message-error {
    width: 100%;
    height: 45px;
    outline: none;  
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #7B1113;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.code-input {
    width: 50px;
    height: 60px;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
}

.code-input:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.code-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}