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);
}

input[type="radio"] {
    color: #36395a; /* Hide the default radio box */
}

/* Customize the label appearance */
.btn {
    font-family: 'Montserrat', sans-serif;
    color: #43517F;
    width: 70px;
    height: 70px;
    background: #fef8f8;
    border: #43517F solid;
}

button {
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    will-change: box-shadow, transform;
    background: #FCFCFD;
    box-shadow: 0px 2px 4px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgb(45 35 66 / 30%), inset 0px -3px 0px #d6d6e7;
    height: 48px;
    padding: 0 32px;
    font-size: 18px;
    border-radius: 6px;
    color: #36395a;
}

button:hover {
    box-shadow: 0px 4px 8px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgb(45 35 66 / 30%), inset 0px -3px 0px #d6d6e7;
    transform: translateY(-2px);
}

button:active {
    box-shadow: inset 0px 3px 7px #d6d6e7;
    transform: translateY(2px);
}

a {
    color: white;
}
#radioContainer {
    display: flex;
    flex-direction: column; /* Arrange radio boxes in a column */
    align-items: center;
    justify-content: center;
}
input[type="radio"] {
    accent-color: #51568473;
    padding: 10px;
    width: 40px;

}
