.radio-group {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(255,204,0,0.10);
}

form input,
form button {
    padding: 12px;
    font-size: 1.08em;
    border-radius: 8px;
    border: 1.5px solid #ffe082;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

form input:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 0 2px #ffecb3;
}

form button {
    background: linear-gradient(90deg, #ffcc00 60%, #ffe082 100%);
    border: none;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(255,204,0,0.13);
}

form button:hover {
    background: linear-gradient(90deg, #ffe082 60%, #ffcc00 100%);
    color: #222;
    transform: translateY(-2px) scale(1.03);
}