
/* === SGN Reset Password (inline) === */
.sgn-reset-wrapper {
    display: flex; justify-content: center; align-items: center;
    min-height: 70vh; padding: 40px 16px;
    background: #ffffff; box-sizing: border-box;
    font-family: "Segoe UI", Roboto, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}
.sgn-reset-card {
    background: #fff; width: 100%; max-width: 480px;
    padding: 32px 28px; border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
    text-align: center;
}
.sgn-logo { width: 140px; height: auto; margin: 0 auto 18px; display:block; }
.sgn-reset-card h2 { margin: 0 0 8px; font-size: 24px; line-height: 1.2; color: #2F869D; }
.sgn-reset-card p { margin: 0 0 18px; color: #4b5563; }

.sgn-reset-card form { margin-top: 8px; text-align: left; }
.sgn-field { width: 100%; display:block; }
.sgn-field input[type="text"],
.sgn-field input[type="password"]{
    width: 100%; box-sizing: border-box;
    padding: 12px 14px; margin: 8px 0 14px;
    border: 1px solid #d1d5db; border-radius: 10px;
    outline: none; transition: box-shadow .15s, border-color .15s;
    font-size: 15px; background:#fff;
}
.sgn-field input:focus {
    border-color: #2F869D;
    box-shadow: 0 0 0 3px rgba(42,125,103,.15);
}

.sgn-btn {
    display:inline-block; width: 100%;
    background: #2F869D; color:#fff; border:0;
    padding: 12px 16px; border-radius: 10px;
    font-weight:600; cursor:pointer; text-align:center;
    transition: transform .05s ease, background .2s ease;
    text-decoration:none;
}
.sgn-btn:hover { background: #256a59; }
.sgn-btn:active { transform: translateY(1px); }

.sgn-link {
    display:inline-block; margin-top:14px; text-decoration:none;
    color:#2F869D; font-weight:500;
}
.sgn-link:hover { text-decoration: underline; }

.sgn-message {
    padding: 12px 14px; border-radius:10px; margin: 10px 0 18px;
    font-size: 14px; text-align:left;
}
.sgn-message.success { background:#e9f7f3; color:#1f5c4c; border:1px solid #2F869D; }
.sgn-message.error   { background:#fdeaea; color:#7a2e2e; border:1px solid #e58c8c; }

/* Pequeños ajustes responsivos */
@media (max-width: 480px){
    .sgn-reset-card{ padding:24px 18px; }
    .sgn-reset-card h2 { font-size:22px; }
}
