.section.center-v {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: max-content;
    max-width: 700px;
    width: 100%;
}

form input:not(.inline) {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    outline: none;
} 

form input::placeholder {
    font-weight: bold;
}

form .radio-inline * {
    display: inline-block;
}

form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

form .form-group .control-label {
    margin-bottom: 10px;
    display: block;
}

form .labelbtn {
    width: 100%;
    display: block;
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

form .labelbtn.active {
    background-color: #002f5f;
    color: white;
}

form .radio {
    display: none;
}

form textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    resize: none;
}

form button {
    padding: 10px 20px;
    background-color: #002f5f;
    color: white;
    border: none;
    border-radius: 5px;
}

form button:hover {
    background-color: #02468b;
}