/* Logo y header */
#logo {
    background: url("logo.png") no-repeat center center;
    background-size: contain;
    width: 150px;
    margin: 0 auto;
}

#title {
    display: none;
}

.text {
    color: white;
    transition: color 0.3s;
}

.text:hover {
    color: #333;
}

/* Formulario */
.reset-form {
    max-width: 400px;
    width: 90%;
    margin: 25px auto;
    padding: 20px;
    border: 1px solid #ccc;
    background: #ffffffdb;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.reset-form h3 {
    text-align: center;
    margin-bottom: 20px;
}

.reset-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.checkbox_mostrar {
    width: auto !important;
    margin-right: 7px !important;
    margin-bottom: 25px !important;
}

.reset-form button {
    width: auto;
    background-image: none;
    border: 1px solid transparent;
    background-color: #c3dceb;
    color: #333333;
    box-shadow: none;
    text-shadow: none;
}

.reset-form button:hover {
    background: #286090;
}

.reset-form .info-text {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-top: 15px;
}

.message {
    margin-bottom: 10px;
    text-align: center;
}

@media screen and (max-width: 640px) {
    #logo {
        width: 120px;
    }

    .reset-form {
        margin: 20px;
        padding: 15px;
        max-width: 100%;
    }

    .reset-form h3 {
        font-size: 20px;
    }

    .reset-form button {
        font-size: 14px;
        padding: 10px;
    }

    .home {
        margin-right: 25px;
    }
}

.asterisco {
    font-weight: bold;
    color: red;
}

label {
    font-weight: bold;
}

.footer_btn {
    width: 100%;
    text-align: center !important;
    padding: 19px 0px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-top: 1px solid #e5e5e5;
}