/* === Reservada Login Styles === */
:root {
    --rsv-color: #ff1616;
    --rsv-color-hover: #e01313;
    --rsv-bg: #fff;
    --rsv-font: "Poppins", sans-serif;
}

.rsv-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background: var(--rsv-bg);
    font-family: var(--rsv-font);
    padding: 2rem;
}

.rsv-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(15px);}
    to {opacity: 1; transform: translateY(0);}
}

.rsv-logo {
    width: 130px;
    margin: 0 auto 1.2rem auto;
}

.rsv-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
    color: #333;
    font-weight: 600;
}

.rsv-card form p {
    margin-bottom: 1rem;
    text-align: left;
}

.rsv-card input[type="text"],
.rsv-card input[type="email"],
.rsv-card input[type="password"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    background: #fafafa;
    transition: 0.2s;
}

.rsv-card input:focus {
    border-color: var(--rsv-color);
    outline: none;
    background: #fff;
}

.rsv-card button {
    background: var(--rsv-color);
    border: none;
    width: 100%;
    padding: 0.9rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 0.25s ease;
}

.rsv-card button:hover {
    background: var(--rsv-color-hover);
    transform: scale(1.02);
}

.rsv-links {
    text-align: center;
    margin-top: 1.3rem;
    font-size: 0.95rem;
}

.rsv-links a {
    color: var(--rsv-color);
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}

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

.rsv-success {
    background: #e6f9e8;
    color: #1e7d1e;
    padding: 0.9rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.rsv-error {
    background: #ffe6e6;
    color: #d60000;
    padding: 0.9rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .rsv-card {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    .rsv-logo {
        width: 110px;
        margin-bottom: 1rem;
    }
}

