

.main {
    display: flex;
    width: 100vw;
    min-height: 100vh;
    max-width: 100%;
    overflow: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: lightgray;
}

.content-area-register {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    min-height: 100%;
}

.register-form-title {
    text-align: center;
    font-family: sans-serif;
    margin-bottom: 25px;
}

.register-form .form-group {
    margin-bottom: 1px;
}

.register-form .form-check-label {
    margin-left: 5px;
}

.form-label {
    margin-top: 3px;
    margin-bottom: 1px;
}

.w-80 {
    width: 80%;
}

.feedback-area {
    display: none;
}


