.rp-container {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    padding-top: 5vh;
}

.rp-modal {
    background: linear-gradient(to bottom, #f5e9d8, #f5e2b8);
    color: #787878;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    width: 100%;
    max-width: 560px;
    animation: rpFadeInUp 0.6s ease-out forwards;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rp-modal:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

@keyframes rpFadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.rp-modal h1 {
    font-size: 2rem;
    margin-bottom: 0.9rem;
    text-align: center;
    font-weight: 700;
    color: #6c6767;
}

.rp-subtitle {
    margin: 0 0 1.6rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.45;
    color: rgba(120, 120, 120, 0.95);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 0px solid #ccc;
    transition: border-color 0.3s;
    background: #ffedcc;
}

.form-control:focus {
    border-color: #787878;
    outline: none;
    background: #fff3de;
    box-shadow: 0 0 0 0 rgba(13, 110, 253, .25);
}

.btn-primary {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(90deg, #a6dadd, #4adbeb);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    transition: background 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: #4adbeb;
}

.btn-ghost {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    color: #6c6767;
    border: 2px solid rgba(120,120,120,.35);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-ghost:hover {
    background: rgba(255,255,255,.35);
    border-color: rgba(120,120,120,.55);
}

.alert {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
}

.alert-danger {
    background: #ffe0e0;
    color: #b00020;
    border: 1px solid #ffb3b3;
}

.rp-links {
    margin-top: 14px;
    text-align: center;
    font-weight: 700;
}

.rp-links a {
    color: #6c6767;
    text-decoration: none;
}

.rp-links a:hover {
    text-decoration: underline;
}

.rp-info {
    background: rgba(255,255,255,.35);
    border-radius: 14px;
    padding: 14px 14px;
    border: 1px solid rgba(0,0,0,.06);
    margin: 14px 0 18px;
    line-height: 1.6;
    font-weight: 700;
}

.rp-info p {
    margin: 0 0 10px;
}

.rp-info p:last-child {
    margin-bottom: 0;
}

.rp-muted {
    opacity: .9;
}

.rp-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
