body {
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;           
    min-height: 100vh;
}
.container {
    background: #fff;
    color: #333;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 400px;
}
h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}
label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}
input {
    width: calc(100% - 20px); /* Учитываем padding */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}
button {
    width: calc(100% - 20px); /* Учитываем padding */
    padding: 12px;
    background: #6a11cb;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-left: 10px; /* Отступ слева */
    margin-right: 10px; /* Отступ справа */
}
button:hover {
    background: #4e0b92;
}
.note {
    font-size: 12px;
    color: #555;
    text-align: center;
    margin-top: 10px;
}
.g-recaptcha {
    display: flex;
    justify-content: center; /* Центрируем reCAPTCHA */
    margin-bottom: 15px;
}