.rr-container {
    max-width: 650px;
    margin: 40px auto;
    padding: 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border: 1px solid #eee;
}

.rr-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rr-form-group {
    display: flex;
    flex-direction: column;
}

    .rr-form-group label {
        font-weight: 600;
        margin-bottom: 6px;
        color: #333;
    }

    .rr-form-group input,
    .rr-form-group select,
    .rr-form-group textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #d8d8d8;
        border-radius: 8px;
        font-size: 15px;
        transition: .25s;
        box-sizing: border-box;
    }

        .rr-form-group input:focus,
        .rr-form-group select:focus,
        .rr-form-group textarea:focus {
            border-color: #c59d5f;
            outline: none;
            box-shadow: 0 0 0 3px rgba(197,157,95,.18);
        }

    .rr-form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

.rr-time-note {
    margin-top: 6px;
    color: #666;
    font-size: 13px;
    font-style: italic;
}

.rr-submit-btn {
    background: #c59d5f;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .rr-submit-btn:hover {
        background: #a97d3e;
    }

.rr-success {
    background: #e8f8eb;
    color: #216b34;
    border-left: 5px solid #28a745;
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.rr-error {
    background: #fdeaea;
    color: #b42318;
    border-left: 5px solid #dc3545;
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 20px;
}
