body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
    background: linear-gradient(10deg, #eb7617, #eb6517, #003554, #005980);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formulario {
    background: #04283f;
    border-radius: 20pt;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    max-width: 400px;
}

.logo-img {
    width: 70%;
    height: auto;
    margin-bottom: -8px;
}

.formulario h1 {
    font-family: 'Montserrat', sans-serif;
    color: #e26f2d;
    font-size: 30pt;
    text-align: center;
    padding: 10pt;
    border-bottom: 1px solid silver;
    width: 100%;
}

.formulario form {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.formulario form .form-group {
    width: 100%;
}

.formulario form label {
    margin: 10pt 0;
    font-size: 18pt;
    color: white;
    text-align: left;
}

.formulario form input {
    width: 90%;
    padding: 10pt;
    margin: 10pt 0;
    border-radius: 5px;
    font-size: 16pt;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.checkbox {
    margin: 20px 0;
    display: flex;
    align-items: center;
    color: white;
}

.form-check-input {
    margin-right: 1px;
}

.form-check-label {
    margin-left: 100px;
}

.checkbox a {
    color: white;
    text-decoration: none;
}

.checkbox a:hover {
    text-decoration: underline;
}

.btn {
    display: block;
    margin: 10px 0;
    padding: 10px 20px;
    border: 1px solid #e26f2d;
    background-color: #e26f2d;
    color: #ffffff;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    width: 70%;
    box-sizing: border-box;
}

.btn:hover {
    background-color: #ff8903;
    border-color: #ff6200;
}
