/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 28 2026 | 16:02:15 */
/* Contenedor */
.rp-pass-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}
.rp-pass-btn{
background-color: #1B3A6B !important;
	  color: #FFFFFF !important;
}

.rp-pass-btn:hover{
background-color: #FFFFFF ;
	  color: #1B3A6B;
}
/* Card */
.rp-pass-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* Título */
.rp-pass-card h2 {
    color: #1B3A6B;
    margin-bottom: 10px;
}

/* Texto */
.rp-pass-card p {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Input */
.rp-pass-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.rp-pass-input:focus {
    border-color: #2F6FED;
    outline: none;
}

/* Botón */
.rp-pass-btn {
    width: 100%;
    background: #2F6FED;
    color: #fff;
    border: 2px solid #1B3A6B;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.rp-pass-btn:hover {
    background: #1F5FE0;
}