body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    height: 100vh;
    margin: 0;
    font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.container {
    width: 100%;
    max-width: 600px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}
p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #777;
}
.input-div {
    margin-bottom: 25px;
    width: 100%;
}
input {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    text-align: center;
    border: 1px solid #a70b0b;
    border-radius: 99px !important;
    outline: none;
    background-color: #f7f7f7;
    color: #333;
}
input:focus {
    border-color: #ffb300;
    background-color: #ffffff;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 99px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.recaptcha-btn {
    background-color: #f0f0f5;
    color: #333;
    margin-top: 15px;
    margin-bottom: 15px;
}
.recaptcha-btn svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    fill: #333;
}
.recaptcha-link {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    color: #333;
}

.recaptcha-link:hover {
    color: #3389a5;
}

.confirm-btn {
    background-color: #21596b;
    color: white;
}
.confirm-btn:hover {
    background-color: #3389a5;
    color: white;
}

.btn:hover {
    color: white;
}
.btn:active {
    box-shadow: none;
}
.error-message {
    color: #a70b0b;
}     

.section {
    display: block;
    width: 100%;
    padding: 2em;
}