.register-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.register-container {
    width: 90%;
    max-width: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 50px 0;
    position: relative;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 2px 5px 1px rgba(204, 198, 204, 1);
}

.register-inputs {
    width: 80%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    margin: 40px auto 0 auto;
}

.register-inputs .form-control, .register-submit {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-logo img {
    height: 4rem;
    width: auto;
    object-fit: contain;
}

.recover-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recover-button {
    width: 100%;
}

.register-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.register-footer a {
    color: #1668F9;
    margin-bottom: 5px;
}

.register-footer p {
    margin-bottom: 0;
}

#check-username,
#error-username {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 13px;
}
#check-username-arroba {
    position: absolute;
    top: 4px;
    left: 12px;
    font-size: 16px;
    color: #555;
}
#check-username {
    color: #07bc0c;
}
#error-username {
    color: #d93856;
}
#check-email,
#error-email {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 13px;
}
#check-email {
    color: #07bc0c;
}
#error-email {
    color: #d93856;
}

#body-no-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ie-warning {
    font-size: 16px;
    color: #1668F9;
    margin-bottom: 20px;
}
.ie-browsers {
    font-size: 15px;
}

.input-field-password {
    width: 100%;
    height: 40px;
    display: flex;
    border: 1px solid #CCC;
    border-radius: 4px;
    margin-bottom: 15px;
}

.input-field-password .container {
    flex: 1;
    padding: 0;
}

.input-field-password .container input {
    flex: 1;
    padding: 0;
    padding-left: 12px;
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.icon-show-password {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.button-back {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    background: transparent;
    border: none;
    position: absolute;
    top: 0;

}

.container-logo {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.container-logo .bar {
    width: 75%;
    height: 1px;
    margin: 18px 0;
    background: hsla(0, 0%, 98%, 1);
    background: linear-gradient(90deg, hsla(0, 0%, 98%, 1) 0%, hsla(0, 0%, 80%, 1) 50%, hsla(0, 0%, 98%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(0, 0%, 98%, 1) 0%, hsla(0, 0%, 80%, 1) 50%, hsla(0, 0%, 98%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(0, 0%, 98%, 1) 0%, hsla(0, 0%, 80%, 1) 50%, hsla(0, 0%, 98%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FAFAFA", endColorstr="#CCCCCC", GradientType=1 );
}

.container-logo >.tax, .disney {
    width: auto;
    object-fit: contain;
}

.tax {
    height: 2.8rem;
}

.disney {
    height: 3.6rem;
}

@media (max-width: 600px) {
    .register-logo img {
        height: 2.5rem;
    }

    .tax {
        height: 1.8rem;
    }
    
    .disney {
        height: 2.6rem;
    }
}