/* Reinicio de márgenes y estilos predeterminados */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", serif;
}

/* Fondo general */
.background {
    height: 100vh;
    width: 100%;
    background: url('./fiberfield.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    /* Color oscuro con opacidad */

}


/* Estilo de la tarjeta */
.card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.4);
    width: 300px;
    padding: 20px;
    text-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 40px;
    z-index: 2;
}

/* Logo */
.card-logo img {
    width: 200px;
    margin-bottom: 10px;
}

/* Inputs */
.input-container {
    margin: 10px 0;
    text-align: center;
    margin: 45px 0;
}

.input-container {
    position: relative;
}

.input-container input {
    width: 90%;
    border: none;
    border-bottom: 1px solid #333;
    font-size: 14px;
    color: #272727;
    padding: 10px 40px 10px 0;
    transition: border-bottom 0.3s ease, transform 0.3s ease;
}

.input-container input:focus {
    outline: none;
    border-bottom: 3px solid #272727;
    /* Cambia el color y grosor del borde */
    transform: scaleY(1.1);
    /* Aplica el zoom solo al borde inferior */
}

.input-container .icon {
    position: absolute;
    right: 18px;
    /* Ajusta este valor según el diseño */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* Para que el ícono no interfiera con el input */
    width: 20px;
    /* Tamaño del ícono */
    height: 20px;
    /* Tamaño del ícono */
}

.input-container .btn-eye {
    position: absolute;
    right: 18px;
    /* Ajusta este valor según el diseño */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 20px;
    /* Tamaño del botón */
    height: 20px;
    /* Tamaño del botón */
}

.input-container input::placeholder {
    color: #272727;
    /* Cambia este valor al color oscuro que prefieras */
    opacity: 1;
    /* Asegura que el color se aplique completamente */
}

/* Botón */
.btn-eye {
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.btn-enter {
    width: 200px;
    background-color: #0f103b;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-enter::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 20px;
    background: linear-gradient(90deg, #046bb4, #5bcbff, #249a64, #6a391e, #046bb4);
    background-size: 400% 400%;
    z-index: -1;
}

.btn-enter:hover {
    background-color: #141c5e;
    zoom: 1;
}


/* ================= FONDO =========================== */

/* ---- reset ---- */
/*  */