body {
    font-family: Arial, sans-serif;
    background-color: #0d0dd2; 
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 20px; 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
}

h1 {
    margin-bottom: 20px;
}

label, select, input, button {
    display: block;
    width: 100%;
    margin: 10px;
}

input, select, button {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-right: 5px;
    margin-left: 5px;
    box-sizing: border-box;
}

input {
    -moz-appearance: textfield; 
    text-align: center; 
}

input:focus, select:focus, button:focus {
    outline: none;
    border: 2px solid #2a089c;
     
}

button {
    background-color: #030f56;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #190a8b;
}
h2, h3 {
    margin-top: 15px;
}

.blue-text {
    color: blue;
}

h3 {
    font-size: 16px;
    font-weight: normal;
    color: #b80e0e;
}
