body {
    margin: 0;

}

.form-checkbox {

    padding: 0.5rem;
}

.hidden {
    display: none;
}


.card {
    border-radius: 0.5%;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.25);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #eff0f3;
    height: 100vh;
    font-family: proxima-nova, sans-serif;
}

.register-user__container {
    display: flex;
    flex-direction: column;
}

.register-user__header {
    color: rgb(13, 13, 13);
    font-weight: 700;
    text-align: center;
}

.register-user__form {
    display: flex;
    flex-direction: column;
    height: 80%;
    border-radius: 1em;
    padding: 2em;
    background-color: #fffffe;
}

.register-user__file_container {
    border: 1px dashed rgba(13, 13, 13, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    color: rgb(42, 42, 42);
    margin-bottom: 5px;
}

.register-user__file_container.active {
    background-color: rgba(96, 96, 96, 0.2);
}

.text_input {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: normal;
    border: 1px solid rgb(137, 151, 155);
    transition: border-color 150ms ease-in-out 0s;
    outline: none;
    color: rgb(33, 49, 60);
    
    :hover {
        box-shadow: rgb(231 238 236) 0px 0px 0px 3px;
    }
}

.select_input {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgb(137, 151, 155);
    background-color: #fffffe;
}

.register-user__notification {
    position: relative;
    padding: 1rem 1.5rem 1rem 1rem;
    font-weight: 500;
    border-radius: 10px;
}

.notification--error {
    background-color: rgba(240, 128, 128, 0.3);
    border: lightcoral solid 1px;
}

.notification--info {
    background-color: rgba(20, 144, 255, 0.2);
    border: dodgerblue solid 1px;
}

.notification--success {
    background-color: rgba(green, 0.3);
    border: green solid 1px;
}

.register-user__notification-close {
    position: absolute;
    right: 3px;
    top: -0.5px;
    text-decoration: none;
    text-shadow: 0 1px 0 #777;
    cursor: pointer;
}

.register-user__notification-close:hover {
    transform: scale(1.3);
}

.register-user__notification-close::after {
    content: '✖';
}

.register-user__label {
    position: absolute;
    z-index: 0;
}

.register-user__file {
    width: 32rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
    cursor: pointer;
    opacity: 0;
    z-index: 100;

}

.register-user__actions {
    display: flex;
    justify-content: space-evenly;
}

.register-user__fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

.register-user__form_rows_container {
    padding-top: 1rem;
    height: 8rem;
    overflow-y: scroll;

}

.btn {
    border: 0 solid #d46210;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-top: 1em;
    margin-bottom: 1em;
    color: rgb(13, 13, 13);
    font-size: medium;
    font-weight: 700;
    min-height: 2.125rem;
}

.btn__delete {
    margin: 0;
}

.btn--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

.register-user__upload_btn {
    position: relative;
    background-color: rgb(255, 142, 60);
    width: 40%;
}

.register-user__upload_btn:disabled {
    pointer-events: none;
    background-color: rgb(255, 142, 60);
    opacity: 70%;
}

.register-user__upload_btn__text {
    color: #ffffff;
    transition: all 0.2s;
}

.register-user__upload_btn:hover {
    filter: brightness(85%);
}

.register-user__upload_btn:active {
    transform: translateY(1px);
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}
