/* General styling for the page */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}


.container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 350px;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffcc00;
}


label {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    cursor: pointer;
}

/* Input styling */
input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    cursor: pointer;
}

input[type="text"] {
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 80%;
    color: #333;
    background: #f9f9f9;
}

/* Buttons styling */
button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    width: 85%;
    transition: all 0.3s;
}

button:hover {
    transform: scale(1.05);
}

button:nth-of-type(1) {
    background-color: #4caf50;
    color: #fff;
}

button:nth-of-type(2) {
    background-color: #007bff;
    color: #fff;
}

/* Message styling */
#message {
    margin-top: 15px;
    font-size: 16px;
    color: #ffcc00;
    font-weight: bold;
}
