.pc-reset-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    min-height: 80vh;
    padding: 20px;
    background: #fafafa;
    box-sizing: border-box;
}
.pc-reset-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    text-align: center;
}
.pc-reset-box h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}
.pc-reset-box > div:first-of-type {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}
.pc-reset-box label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}
.pc-reset-box input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}
.pc-reset-box input[type="email"]:focus {
    border-color: #FF5722;
    outline: none;
    box-shadow: 0 0 6px rgba(255,87,34,0.4);
}
.pc-reset-box input[type="submit"] {
    width: 100%;
    background-color: #FF5722;
    color: white;
    font-weight: 700;
    border: none;
    padding: 14px;
    font-size: 17px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.25s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
.pc-reset-box input[type="submit"]:hover {
    background-color: #e64a19;
}
.pc-logo {
    max-width: 150px;
    margin-bottom: 25px;
}
.pc-registrate {
    margin-top: 25px;
    font-size: 14px;
}
.pc-registrate a {
    color: #FF5722;
    font-weight: 600;
    text-decoration: none;
}
.pc-registrate a:hover {
    text-decoration: underline;
}
.pc-mensaje-exito {
    background-color: #e6f9ed;
    border-left: 6px solid #2ecc71;
    padding: 20px 20px 20px 50px;
    border-radius: 8px;
    color: #2c7a4b;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    margin-bottom: 30px;
    animation: aparecer 0.4s ease-out;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.1);
}
.pc-mensaje-exito::before {
    content: "✔";
    position: absolute;
    left: 20px;
    top: 18px;
    font-size: 20px;
    color: #2ecc71;
}
@keyframes aparecer {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.pc-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 14px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
}
.nv-page-title-wrap,
.nv-post-cover .nv-title-meta-wrap,
.nv-page-title-wrap .nv-page-title{
    display: none;
}