/*Estilos de la pagina*/

body {
    margin-top: 30px;
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
    background-color: #0B1B1A;
    font-family: sans-serif;
}

.aplicativo {
    background-color: #007377;
    border-radius: 20px;
    padding: 30px;
    width: 80%;

}

h1 {
    text-align: center;
    color: white;
    background-color: #025663;
    padding: 20px;
    border-radius: 20px;

}

form {

    background-color: aliceblue;
    color: #514F4F;
    padding: 60px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}

label {
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 20px;
    text-align: center;
}
span{
    margin: 0px;
}

input {
    border: solid;
    border-color: #025663;
    border-radius: 10px;
    padding: 5px;
    margin-left: 20px;
    height: 20px;
}

input[required] {
    border-color: #ba0c2f;
}

/* Cambia el color del borde cuando hay texto */
input:not(:placeholder-shown) {
    border-color: green;
  }

select {
    border: solid green;
    border-radius: 10px;
    padding: 5px;
    margin-left: 20px;
    height: 40px;
    transition: border-color 0.3s ease;
}
  
select.invalid{
    border-color: #ba0c2f;
}
  

/* Estilo para el contenedor de la firma */
#firmaContenedor {
    /* background-image: url('Generico.svg'); */
    /* Reemplaza 'fondo.jpg' con la ruta de tu imagen de fondo */
    color: #007377;
    font-family: Calibri, Arial, Helvetica, sans-serif;
    width: 600px !important;
    height: 184px !important;
    margin: 30px;
    position: relative;
}
.fondo {
    z-index: 1;
    object-fit: fill;

}

#firmaTabla {
    position: absolute;
    top: 0px;
    height: inherit;
    display: flex;
    vertical-align: middle;
    z-index: 2;
    border-collapse: collapse;
    align-items: center;
}

#firmaTexto {
    vertical-align: middle;
    line-height: 1.2 !important;
}
#firmaTexto p {
    line-height: 1.2 !important;
}

#firmaTabla td {
    padding: 8px 8px 8px 15px;
    text-align: left;
    border: none;
}

#formulario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 150%;
    margin: 0px 0px 0px 60px;
}

#correo{
    width: auto;
}

.Nombre {
    color: #007377;
    font-size: 23px;
    margin: 0px;
    padding: 0px;
    width: 299px;
}

.cargo {
    color: #007377;
    font-size: 12px;
    margin: 0px;
    padding: 0px;
    text-transform: uppercase;
    width: 299px;
}

.correo {
    color: #514F4F;
    font-size: 17px;
    letter-spacing: -0.6px;
    margin: 0px;
    padding: 3px 0px 3px 0px;
    text-transform: lowercase;
    width: 299px;
}

.datos {
    color: #514F4F;
    font-size: 12px;
    margin: 0px;
    padding: 0px;
    width: 299px;
}

.icono {
    margin: 0px 0px -2px 0px;

}

.logo {
    background-image: url('LogoBlanco.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 120px;
    height: 120px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
}

.noflex {
    display: block;
    padding: 0px 60px 0px 60px;
}

.siflex {
    display: flex;
    width: auto;
    justify-content: space-between;
}

.flexrelative {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
}

/*Estilo del Boton*/


/* Estilo base del botón */
button {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    border-radius: 100px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, filter 0.2s ease-in-out;
    cursor: pointer;
    /* Añade la propiedad cursor: pointer; */
}

/* Efecto de brillo al hacer hover */
button:hover {
    filter: brightness(1.2);
}

/* Efecto de agrandamiento al hacer hover */
button:hover,
button:active {
    transform: scale(1.1);
}

/* Efecto de desaparición de sombra al hacer click o hover */
button:active,
button:hover {
    box-shadow: none;
}

/* Efecto de bounce al hacer click */
button:active {
    animation: bounce 0.3s ease-in-out;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}
/*Estilos pasos (Instructivo)*/
.Pasos{
    background-color: aliceblue;
    color: #696969;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;

    box-shadow: 10px 10px 14px 0px rgba(0,0,0,0.32);
    -webkit-box-shadow: 10px 10px 14px 0px rgba(0,0,0,0.32);
    -moz-box-shadow: 10px 10px 14px 0px rgba(0,0,0,0.32);
}
.Pasos h3{
    font-weight: bold;
    color: #007377;
}
.numero{
    text-align: center;
    color: white;
    background-color: #025663;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    width:30px;
    margin-right: 10px;
}
.numero p{
    padding: 0px;
    margin: 0px;
    border: 0;
}
.terminos{
    width: 50%;
    padding: 10px 30px 20px 30px;
    margin-bottom: 30px;
    background-color: #e6e6e6;
}
.centrar{
    display: flex;
    justify-content: center;
}
label[disabled]{
    color: #d1d1d1;
}
#nombreApellido{
    text-transform: lowercase;
}
.banners{
    text-align: center;
    background-color: aliceblue;
    color: #514F4F;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    width: 40%;
}