@charset "utf-8";
/* CSS Document */
body { font-family: Arial, sans-serif; background:#f4f4f4; }
form {
    max-width: 450px;
    margin: 40px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
input, textarea, button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    box-sizing: border-box; /* Чтобы паддинги не расширяли элементы */
}
button {
    background: #2c7be5;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
button:hover { background: #1a68d1; }
#result {
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
}
#successBox {
    display: none;
    text-align: center;
    margin-top: 30px;
}
#successBox img {
    max-width: 200px;
}
label { display: block; margin-top: 15px; font-weight: bold; }
