.auth_modal .group {
    position: relative;
    margin-bottom: 40px;
}

.auth_modal .right label {
    margin-top: 0px !important;
}

.auth_modal input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 300px;
    border: none;
    border-bottom: 1px solid #757575;
    background-color: hsl(224, 10%, 10%) !important;
    color: #fff;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px hsl(224, 10%, 10%) inset;
    box-shadow: 0 0 0px 1000px hsl(224, 10%, 10%) inset;
    -webkit-text-fill-color: #fff;
}


.auth_modal input:focus {
    outline: none;
}

/* LABEL ======================================= */
.auth_modal label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

/* active state */
.auth_modal input:focus~label,
.auth_modal input:valid~label {
    top: -20px;
    font-size: 14px;
    color: #4bc0c0;
}

/* BOTTOM BARS ================================= */
.auth_modal .bar {
    position: relative;
    display: block;
    width: 300px;
}

.auth_modal .bar:before,
.auth_modal .bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #4bc0c0;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.auth_modal .bar:before {
    left: 50%;
}

.auth_modal .bar:after {
    right: 50%;
}

/* active state */
.auth_modal input:focus~.bar:before,
.auth_modal input:focus~.bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.auth_modal .highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.auth_modal input:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

.auth_modal img {
    width: 150px;
    float: right !important;
    cursor: pointer !important;
    font-weight: bold !important;
    color: white !important;
    padding: 5px !important;
    top: -82px !important;
    font-size: 30px !important;
    position: absolute !important;
    right: 92px !important;
}

.change {
    margin-top: -10px;
    margin-bottom: 15px;
}

.change:hover {
    color: #4bc0c0;
    transition: 0.2s ease all;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #4bc0c0;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #4bc0c0;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #4bc0c0;
    }

    to {
        width: 0;
        background: transparent;
    }
}

.alert {
    position: fixed;
    top: 10%;
    max-width: 380px;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    background-color: #f44336;
    color: white;
    border-radius: 5px;
    z-index: 9999;
    display: none;
    transition: opacity 1s ease-out;
}

.closebtn {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    font-weight: bold;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}
.alert p {
    display: none;
}

.alert_success {
    position: fixed;
    top: 10%;
    max-width: 380px;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    background-color: #2EBD85 ;
    color: white;
    border-radius: 5px;
    z-index: 9999;
    display: none;
}

.alert_success p {
    display: none;
}
