/*login*/
body p {
    color: #212529;
}

.auth-container {
    width: 100%;
    height: 100%;
    background-image: url("/image/second_background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.center-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 768px){
    .center-container {
        min-height: calc(100vh - 70px);
    }
}
.auth-content-login {
    background: #FFF;
    width: 420px;
    border: 1px #EEE solid;
    text-align: left;
    border-radius: 8px;
    padding: 20px 40px;
}

.custom-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media only screen and (max-width: 540px) {
    .auth-content-login {
        max-width: 320px;
    }
}

.text-description {
    margin-top: 20px;
    text-align: left;
}

.custom-input .input-text-label {
    float: left;
    margin: 0;
    padding: 0;
}

.custom-input .input-text {
    height: 50px;
    background: #f9f9f9;
    border: 0;
}

.input-text-icon {
    float: right;
    margin-top: -34px;
    margin-right: 25px;
    color: rgba(59, 50, 50, .3);
}

.custom-button-full {
    width: 100%;
    position: relative;
    float: right;
    outline: none;
}

#button-container {
    margin-bottom: 10px;
    margin-top: 20px;
}

.custom-button-full .button {
    font-size: 15px;
    height: 48px;
    width: 100%;
}

.custom-button-full .icon-right {
    position: absolute;
    right: 25px;
    bottom: 15px;
    height: 18px;
    color: rgba(59, 50, 50, .3);
}

.btn-primary {
    color: #fff;
    background-color: #21588d;
    border-color: #21588d;
}

.text-danger {
    color: #e3342f !important;
}

.custom-margin-button-auth {
    margin-bottom: 15px;
}

.align-item-left {
    float: left;
}

.align-item-right {
    float: right;
}

.wrapper-image-logo {
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 320px;
}

/*Login*/

.auth-content-register {
    background: #fff;
    width: 540px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px 30px;
    margin-top: 120px;
    margin-bottom: 20px;
}

.custom-button-full .button-label {
    margin-left: 15px;
}

.custom-input .input-text-area {
    height: 100px;
    background: #f9f9f9;
    border: 0;
}

.icon-left {
    height: 18px;
    position: absolute;
    left: 12px;
    top: 15px;
    color: rgba(59, 50, 50, .3);
}

.wrapper-image-size {
    height: auto;
    width: 300px;
    object-fit: cover;
    margin: auto;
}

.custom-input .input-text {
    height: 50px;
    background: #f9f9f9;
    border: 0;
}
@media only screen and (max-width: 820px) {
    .auth-content-register {
        margin-top: 0;
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 768px){
    .auth-content-register {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 720px) {
    .auth-content-register {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 540px) {
    .auth-content-register {
        max-width: 320px;
        padding: 0 10px;
    }
}

.btn:focus, .btn:active {
    outline: none !important;
    box-shadow: none;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}


@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

.ellipsis_overflow {
    white-space: nowrap;
    width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: auto;
}
.auth-content-reset-password {
    background: #fff;
    width: 500px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px 30px;
}

@media only screen and (max-width: 540px) {
    .auth-content-reset-password {
        max-width: 320px;
    }
}
