/* css/thank-you.css */

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.thank-you-container {
    max-width: 600px;
    width: 100%;
    padding: 40px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.thank-you-container h1 {
    font-size: 32px;
    color: #0073aa;
    margin-bottom: 20px;
}

.thank-you-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.thank-you-container .button {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s ease;
}

.thank-you-container .button:hover {
    background: #005a8c;
}

@media (max-width: 600px) {
    .thank-you-container {
        padding: 20px;
    }

    .thank-you-container h1 {
        font-size: 24px;
    }

    .thank-you-container p {
        font-size: 16px;
    }

    .thank-you-container .button {
        font-size: 14px;
        padding: 10px 15px;
    }
}
