body {
    font-family: 'Montserrat', sans-serif;
    background: #43517F;
    color: white;
}

.fr {
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.lbl {
    margin-bottom: 10px;
}

input, select {
    width: 90%;
    max-width: 300px;
    height: 40px;
    text-align: center;
    margin-bottom: 15px;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 5px;
    padding: 8px;
    box-sizing: border-box;  
}

label {
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center; /* Center vertically */
    margin-top: 10px; /* Add margin for spacing */
}

input::placeholder, select::placeholder {
    color: rgb(217, 217, 217);
}


/* Customize the label appearance */


a {
    color: white;
}
#radioContainer {
    display: flex;
    flex-direction: column; /* Arrange radio boxes in a column */
    align-items: center;
    justify-content: center;
}

