/* Base styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Centering and styling the disclaimer container */
.disclaimer-container {
    width: 100%;
    max-width: 500px;
    padding: 50px 40px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.disclaimer-container h1 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.disclaimer-container h2 {
    font-size: 24px;
    color: #555;
    margin-bottom: 15px;
    font-weight: 600;
}

.disclaimer-container p {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.g-recaptcha {
    margin: 20px auto;
}

button {
    width: 100%;
    max-width: 350px;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background-color: #3498db;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #1d6fa5;
    transform: translateY(-2px);
}

button:active {
    background-color: #2980b9;
    transform: translateY(0);
}

.error-message {
    color: #e74c3c;
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
}

.disclaimer-container p.footer-note {
    margin-top: 25px;
    font-size: 16px;
    color: #888;
}

@media screen and (max-width: 768px) {
    .disclaimer-container {
        padding: 40px 30px;
    }

    h1 {
        font-size: 24px;
    }

    button {
        font-size: 16px;
    }
}
