/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    background-color: #0A0B0D;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.captcha-container {
    background-color: #0A0B0D;
    border-radius: 12px;
    border: 1px solid rgba(91,97,110,0.2);
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.header p {
    font-size: 16px;
    color: grey;
    margin-bottom: 30px;
}

.submit-container {
    margin-top: 30px;
}

button.submit-btn {
    background-color: #588BFA;
    color: black;
    padding: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    transition: background-color 0.3s ease;
}

button.submit-btn:hover {
    background-color: #2196f3;
}

button.submit-btn:active {
    background-color: #1e87d6;
}

/* Add custom animations for loading */
.hcaptcha {
    margin-bottom: 20px;
}

.error {
    color: #f44336;
    font-size: 16px;
    margin-top: 20px;
}

.success {
    color: #4caf50;
    font-size: 16px;
    margin-top: 20px;
}

/* Mobile Styles */
@media (max-width: 480px) {
    .captcha-container {
        padding: 30px;
        border: none;
    }

    .header h1 {
        font-size: 20px;
    }

    .header p {
        font-size: 14px;
    }
}

.cent {
    display: flex;
    justify-content: center;

}