*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body 
{
    background-image: url('../image/Diseno.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.center-form 
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background-color: white;
    border-radius: 50px;
    padding: 25px 0;
    box-shadow: 2px 2px 5px 5px rgba(8, 8, 8, 0.342);
    width: 100%;
    max-width: 450px;
    max-height: 600px;
}

.form-container form {
    margin: 0 auto;
}

.recover-password p{
    text-align: center;
    font-size: 12pt;
}

.form-container label {
    color: #3a3939;
    font-weight: 400;
    padding-bottom: 10px;
}

.form-control {
    margin-bottom: 10px;
}

.btn-primary {
    background-color: transparent;
    border: 2px solid transparent;
    color: rgb(41, 41, 41);
    transition: background-color 0.3s, border-color 0.3s;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    display: block;
    margin: 22px auto;
}

.btn-primary:hover {
    background-color: #398ce6ee;
    border-color: #398ce6ee;
}

.btn-primary:focus {
    box-shadow: none;
}
  
.form-container a {
    display: block;
    margin-top: 10px;
    color: #333;
    text-decoration: none;
}

.form-container a:hover {
    color: #666;
    text-decoration: none;
    border-bottom: none;
}

.image-logo {
    text-align: center;
    margin-bottom: 35px;
}
  
.image-logo img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
 
.forgot-password {
    display: block;
    text-align: center;
    margin-top: 55px;
    color: #666;
    text-decoration: none;
    font-size: 10pt;
    transition: text-decoration 0.3s;
}
  
.forgot-password:hover {
    color: #333;
    text-decoration: underline;
    border-bottom: none;
}

footer 
{
    padding: 10px 0;
    text-align: center;
    position: sticky;
    bottom: 0;
}