body {
    background-color: #F6F6F6 !important;
    height: 100%;
}

.center_flex {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #9f7928;
}

.gold_color {
    color: #9f7928;
}

.register_form {
    margin-top: 25px;
    margin-bottom: 25px;
}

.label_ar {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: unset !important;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: darkred;
    color: #fff;
    text-align: center;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    border-radius: 10px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.6s;
    animation: fadein 0.5s, fadeout 0.5s 2.6s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 3px solid #9f7928;;
}