﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}

body {
    background-image: url('https://vicenvivo.com/storage/2020/04/Foto-1-FCAV-07-04-2020.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 125, 81, 0.473);
    z-index: 1;
}

h2 {
    margin-bottom: 6rem;
    margin-top: 5rem;
    font-family: "Quicksand", sans-serif;
}

.login-container {
    width: 100%; /* Ajusta el ancho para pantallas pequeñas */
    max-width: 25rem;
    padding: 3rem;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Añade sombra para destacar el contenedor */
    height: 100%;
    display: flex;
    /*flex-direction: column;*/
    justify-content: center;
    background: rgb(255, 255, 255,0.804);
}

    .login-container img {
        width: 150px;
        margin: 0 auto; /* Centra la imagen y agrega espacio inferior */
    }

.input-group {
    display: flex;
    gap: 5px;
    flex-direction: column;
    border-bottom: 1px solid black;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.group {
    margin-top: 1rem;
}

.user-info {
    display: flex;
    font-size: 14px;
}

.input-group i {
    color: rgb(123,194,156);
    pointer-events: none;
}

    .input-group i:hover {
        color: rgb(123, 194, 156);
    }

.user-input {
    padding: 5px;
    font-size: 1rem;
    border: none;
    background-color: transparent;
    outline: none;
    width: 15rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.login-btn {
    padding: .6rem;
    border: none;
    border-radius: 25px;
    background-color: rgb(24,125,82);
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 2rem;
    transition: background-color 0.3s;
    width: 9rem;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

    .login-btn:hover {
        background-color: rgb(20, 100, 70);
    }

.footer-text {
    font-size: .95rem; /* Tamaño de fuente */
    color: rgb(12, 53, 18); /* Color de texto */
    text-align: justify; /* Centra el texto */
    margin-top: auto;
}


#lblTxt {
    color: red;
    font-family: "Quicksand", sans-serif;
    margin-top: 5rem;
}

.desc-btn {
    background-color: red;
}

#phButton .login {
    padding: 0.6rem;
    border: none;
    border-radius: 25px;
    background-color: rgb(144, 130, 130);
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 2rem;
    transition: background-color 0.3s;
    width: 10rem;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

    #phButton .login:hover {
        background-color: rgb(62, 56, 56);
    }


/*#phButton .btn {
    padding: 0.8em 1.5em;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1em;
    color: #fff;
    background-color: #007bff;*/ /* Azul principal */
/*border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
    border: none;
    outline: none;
    transition: background-color 0.25s, transform 0.2s ease;*/
}

/*#phButton .btn:hover {
        background-color: #0056b3;*/ /* Azul más oscuro */
/*transform: scale(1.05);
    }

    #phButton .btn:active {
        background-color: #004085;*/ /* Azul aún más oscuro */
/*transform: scale(0.95);
    }*/
