body{
    background-color: rgb(189, 212, 255);
    font-size: 26px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    max-width: 500px;
    margin: auto;
    padding: 20px;
}

.row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

input, select {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    padding: 8px 14px;
    background-color: #649bb1;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color: #6093a8;
}

.red {
    color: red;
    font-weight: bold;
}