/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

p {
    font-size: 1rem;
    color: #4e4c4c;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Contenedor del formulario */
.psw-rst-frm-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

label {
    font-size: 1rem;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
    text-align: left;
}

/* Estilos de los inputs */
.psw-rst-email {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.psw-rst-email:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Estilos de los botones */
.psw-rst-bttn,
.psw-rst-bttn-cancel {
    background-color: #007bff;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0.5rem;
}

.psw-rst-bttn:hover,
.psw-rst-bttn-cancel:hover {
    background-color: #0056b3;
}

.psw-rst-bttn:active,
.psw-rst-bttn-cancel:active {
    background-color: #004085;
    transform: scale(0.98);
}

.psw-rst-bttn-cancel {
    background-color: #6c757d;
}

.psw-rst-bttn-cancel:hover {
    background-color: #5a6268;
}
