
body {
    background-color: rgb(245, 243, 245);
    margin: 0;
    font-family: sans-serif;
}

h2, p {
    cursor: default;
}
h2{
    text-align: center;
}
span {
    color: #0B3895;
}

span:hover {
    color: #1435d9;
}

.contenedor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
    max-width: 425px;
    margin: auto;
    padding: 20px;
    background-color: rgb(245, 243, 245);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.barraSuperior h2 {
    font-weight: bold;
    font-size: 24px;
    margin: 0 0 10 0;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 10px;
}

.barraSuperior h2 a {
    text-decoration: none;
    color: black;
}

.barraSuperior h2 a:hover {
    color: black;
}

.barraSuperior a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 10px;
}

.barraSuperior a:hover {
    color: #0B3895;
}

#actual {
    border-bottom: 3px solid #0B3895;
    color: #0B3895;
    margin-bottom: 0;
}


.ingresarDatos {
    width: 100%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.ingresarDatos label {
    display: block;
    margin-bottom: 5px;
}

.ingresarDatos input {
    width: calc(100% - 20px);
    padding: .5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0px 1px 1px rgba(0,0,0,0.5);

}

.ingresarDatos input:hover {
    outline: none;
}

.ingresarDatos input:focus {
    border: none;
    border-bottom: 2px solid #0e3fc6;
    border-right: 2px solid #0e3fc6;
    border-radius: 4px 4px 2px 2px;
    outline: 1px solid lightgrey;
}


.botones {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 30%;
}

#recuperarContraseña, #ingresar {
    width: 45%;
    height: 40px;
    border-radius: 5px;
}

#recuperarContraseña {
    margin-left: 0;
    background-color: white;
    color: #0B3895;
    border-radius: 5px;
    border: 1px solid #0B3895;
}

#ingresar {
    margin-right: 0;
    background-color: #0B3895;
    color: white;
}

.botones button {
    flex-grow: 1;
    margin-top: 10px; 
}

#recuperarContraseña:hover {
   background-color: white; 
   color: #1435d9; 
   cursor:pointer; 
}

#ingresar:hover {
   background-color:#1435d9; 
   cursor:pointer; 
}

@media (max-width: 600px) {
   .contenedor {
       width:95%;
   }
}