﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    position: relative;
    width: 100%;
    height: 100vh; /* Tamaño completo del viewport */
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url("../Images/Pages/fondo.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}



.logoContainer {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100px;
    height: 100px;
}

.modalFullScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); /* Fondo semitransparente */
    z-index: 1050; /* Asegúrate de que sea superior a otros elementos */
    display: flex;
    justify-content: center;
    align-items: center;
}




h1 {
    font-size: 2rem;
    color: #fff;
    text-align: center;
}

.inputbox {
    position: relative;
    margin: 30px 0;
    max-width: 310px;
    border-bottom: 2px solid #fff;
}

    .inputbox label {
        position: absolute;
        top: 50%;
        left: 5px;
        transform: translateY(-50%);
        color: #fff;
        font-size: 1rem;
        pointer-events: none;
        transition: all 0.5s ease-in-out;
    }

input: focus ~ label,
input: valid ~ label {
    top: 0px;
}

.inputbox input {
    width: 100%;
    height: 60px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0 35px 0 5px;
    color: #fff;
}

section {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 400px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(55px);
    transform: translate(-50%, -50%);
    width: 80%; /* Ancho del div, ajustable según necesidades */
    justify-content: center;
    align-items: center;
    padding: 2rem 3rem;
}

.terminal {
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 400px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(55px);
    border-color:black;
    transform: translate(-50%, -50%);
    width: 40%; /* Ancho del div, ajustable según necesidades */
    justify-content: center;
    align-items: center;
    padding: 2rem 3rem;
}


.inputbox ion-icon {
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 1.2rem;
    top: 20px;
}

.forget {
    margin: 35px 0;
    font-size: 0.85rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.label {
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    width:70px;
}

.label2 {
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    width: 70px;
    margin-right:10px;
}

.combo {
    font-size: 0.85rem;
    color: black;
    display: flex;
    justify-content: space-between;
    width: 60%;
}

.fila 
{
    display: flex;
    align-items: center;
    margin:15px;
}

.fila2 {

    align-items: center;
    margin: 15px;
}



﻿

.forget label {
    display: flex;
    align-items: center;
}

.forget label input {
    margin-right: 3px;
}

.forget a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

    .forget a:hover {
        text-decoration: underline;
    }

.button {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background-color: rgb(255, 255, 255, 1);
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

.buttonReg  {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background-color: rgb(255, 255, 255, 1);
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

﻿

button:hover {
    background-color: rgb(255, 255, 255, 0.5);
}

.register {
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    margin: 25px 0 10px;
}

    .register p a {
        text-decoration: none;
        color: #fff;
        font-weight: 600;
    }

        .register p a:hover {
            text-decoration: underline;
        }


