body {
    background: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
}
.container img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}
h1 {
    color: #d11919;
    margin-bottom: 10px;
}
p {
    color: #333;
    margin-bottom: 20px;
}
form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ffcc00;
    border-radius: 6px;
    font-size: 14px;
}
form input:focus {
    outline: none;
    border-color: #d11919;
    box-shadow: 0 0 5px rgba(209, 25, 25, 0.5);
}
button {
    background-color: #d11919;
    color: #fff;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}
button:hover {
    background-color: #b71717;
}
.g-recaptcha {
    margin-top: 15px;
}
