body {
    background-color: rgb(29, 29, 29) !important;
}

.register-image {
    color: #ffffff;
    background-image: url("../../img/auth/register.jpg");
    min-height: 375px;
    width: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

@media screen and (min-width: 500px) {
    .register-image {
        min-height: 450px;
    }
}

@media screen and (min-width: 700px) {
    .register-image {
        min-height: 600px;
    }
}

@media screen and (min-width: 992px) {
    .register-image {
        height: calc(100vh - 75px);
        min-height: 563px;
    }
}

#registerForm h1 {
    color: #fff;
    text-align: center;
}

.auth-input {
    width: 100%;
    border-color: #fff;
    color: #000;
    background-color: rgb(245, 245, 245);
    display: inline-block;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.5em;
    height: 35px;
    text-align: center;
}

@media screen and (max-width: 650px) {
    .auth-input {
        width: 80%;
    }
}

@media screen and (max-width: 420px) {
    .auth-input {
        width: 100%;
    }
}

.auth-input::placeholder {
    color: rgb(36, 36, 36);
    text-align: center;
}

.btn-auth-register {
	font-size:1.5em;
    width: 50%;
    display: inline-block;
    text-align: center;
    margin: 0;
    height: 35px;
}

.forgot-text
{
    text-decoration: none;
    color: #000;
    margin: 0;
}

.forgot-text:hover
{
    text-decoration: none;
    color: rgb(104, 103, 103);
}

.news
{
    font-weight: 300;
    font-size: 0.9em;
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: rgb(156, 156, 156);
}
  
.checkmark 
{
    margin: 1px 0 0 -297px;
    position: absolute;
    height: 16px;
    width: 16px;
    border: 2px solid rgb(223, 223, 223);
    border-radius: 5px;
}

@media screen and (max-width: 1053px) and (min-width: 992px) {
    .news {
        font-size: 0.83em;
    }

    .checkmark {
        margin-left: -278px;
    }
}
@media screen and (max-width: 361px) {
    .checkmark {
        margin: -19px 0 0 -165px;
    }
}

.news input 
{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.news:hover input ~ .checkmark 
{
    background-color: #ccc;
}

.news input:checked ~ .checkmark 
{
    background-color: rgba(0,161,154,1);
}

.checkmark:after 
{
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.news input:checked ~ .checkmark:after 
{
    display: block;
}

/* Style the checkmark/indicator */
.news .checkmark:after 
{
    left: 2px;
    top: 1px;
    width: 7px;
    height: 9px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-control-label::before 
{
    display: none;
}
.custom-control-label::after 
{
    display: none;
}

.register 
{
    font-weight: 400;
    color: rgba(0,161,154,1);
    font-size: 1.5em;
    margin: 0;
}

.register:hover 
{
    text-decoration: none;
    color: rgb(2, 196, 186);
}

.form-group
{
    margin-bottom: 1.5rem;
}