/* styles.css */

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #0088cc 0%, #005780 100%);
    color: #fff;
    padding: 50px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: left;
}

label {
    display: block;
    margin: 15px 0;
    font-size: 18px;
    color: #333;
}

input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
}

button {
    background: #0088cc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
    display: block;
    width: 100%;
    margin-top: 20px;
}

button:hover {
    background: #005780;
}

#result {
    margin-top: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: left;
}

#result h2 {
    color: #0088cc;
}

#result p {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}
