

/* Pantalla de carga */
.loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1c1c1c;
}

.loader .gif {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.loader .logo-carga {
    width: 100%;
}

/* Establecer el estilo para el contenedor principal */
.container {
    max-width: 1200px; /* Ancho máximo de 1200px */
    margin: 0 auto; /* Centramos el contenedor en la página */
    padding: 20px; /* Espaciado interior */
  
    display: flex;
    align-items: center;
    justify-content: center;
    
    height: 100vh;
}

/* Estilos generales para la web app */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    
}
.Logo{
    display: flex;
    justify-content: center;
}
.Logo img{
    width: 100%;
    height: auto;
    padding-bottom: 30px;
}
/* Estilos para la caja de texto transparente */
.form-inicio-sesion{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-container {
    width: 300px;
    padding-bottom: 25px;
}
.input-container {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

label {
    font-size: 14px;
    color: #ccc;
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #555; /* Borde inferior */
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

input::placeholder {
    color: #aaa; /* Color del texto de marcador de posición */
}

input:focus {
    border-bottom: 1px solid #3BB74C; /* Color del borde cuando se enfoca */
}
.form-inicio{
    background: url(./img/background.png);
    width: 100%;
    padding: 100px;
    border-radius: 15px;
    height: 40vh;
    max-width: 300px;
    display: none;
}
.form-group {
    margin: 20px;
    display: flex;
    justify-content: center;
    width: 80%;
}

.Btn-inicio-sesion{
    background-color: #3BB74C;
    display: flex;
    justify-content: center;
    width: 100%;
    color: #ffffff;
    border-radius: 8px;
    font-size: 10px;
}


/* inicio.html*/
