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

.login-image {
    color: #000000;
    background-image: url("../../img/auth/login.jpg");
    width: 100%;
    min-height: calc(100vh - 75px);
    -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;
}

#loginForm 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;
}

.btn-auth-reset-login
{
    width: 60%;
    margin-right: auto;
    margin-left: auto;
}

.auth-reset-input
{
    width: 60%;
}

@media screen and (max-width: 1000px) {
    .btn-auth-reset-login
    {
        width: 80%;
    }
    
    .auth-reset-input
    {
        width: 80%;
    }
}

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

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

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

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

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

.forgot-text:hover
{
    text-decoration: none;
    color: rgba(0,161,154,1);
}

.remember-me
{
    color: #fff;
    font-weight: 600;
    font-size: 1.5em;
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.remember-me:hover
{
    color: rgba(0,161,154,1);
}

.remember-me input 
{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
.checkmark 
{
    margin: 3px 0 0 -187px;
    position: absolute;
    height: 25px;
    width: 25px;
    border: 2px solid #fff;
    border-radius: 8px;
}

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

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

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

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

/* Style the checkmark/indicator */
.remember-me .checkmark:after 
{
    left: 7px;
    top: 2px;
    width: 8px;
    height: 13px;
    border: solid white;
    border-width: 0 4px 4px 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: #fff;
}

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

.forgot-password
{
    color: rgb(220, 220, 220)
}

.social-login-button {
    color: #fff;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    margin-right: 0;
}
.social-login-button:hover {
    color: #fff;
    text-decoration: none;
}

.google {
    background-color: #dd4c39;
}

.google:hover {
    background-color: #dd3c27;
}

.linkedin {
    background-color: #007bb6;
}

.linkedin:hover {
    background-color: #016c9e;
}

.fb {
    background-color: #4066b7;
}

.fb:hover {
    background-color: #325399;
}

.social-login-button {
    width: 50%;
}

@media screen and (max-width: 768px) {   
    .social-login-button {
        width: 100%;
    }
}