@keyframes animationBlur {
    from {
        filter: blur(50px);
    }
    to {
        filter: blur(8px);
    }
}

.btn-form {
    width: calc(50% - 5px);
    display: inline-block;
    margin-right: 2px;
}

.btn-back {
    background-color: #E0E0E0 !important;
    color: #424242 !important;
}

.btn-back:hover {
    background-color: #E0E0E0 !important;
    color: #424242 !important;
}

.form-control,
.form-control:focus {
    background: none;
    border: 0;
    border-bottom: 2px solid rgba(54, 101, 127, 0.3);
    box-shadow: none;
    text-align: left;
    margin-bottom: .5em;
    color: #757575;
    border-radius: 0;
    padding-left: 0;
    padding-bottom: 0;
}

select.form-control,
select.form-control:focus {
    border: 0;
    background: #70c3c9;
    color: #fff;
    border-radius: .2em;
    width: 120%;
}

.form-control + label {
    margin: -3.5rem 0 0 0;
    font-size: .8em;
    opacity: .7;
    transition: .15s ease-in-out;
}

.form-group > label {
    font-size: .8em;
    opacity: .7;
}

.form-control:placeholder-shown + label {
    color: #70c3c9;
    font-size: 1.5em;
}

.btn-login {
    background-color: #366682;
    color: #ffffff;
}

.btn-login:hover {
    background: #244d65;
}


body {
    overflow: hidden;
}
.blur-background {
    background: url("./background-del.jpg") no-repeat;
    background-size: 75%;
    background-position: center;
    position: fixed;
    height: 150vh;
    width: 150vw;
    z-index: 0;
    filter: blur(6px);
    top: -25vh;
    left: -25vw;

    animation-duration: 1000ms;
    animation-name: animationBlur;
}

main.row {
    background-color: rgba(54, 101, 127, 0.7);
    position: relative;
    z-index: 1;
}

main > div {
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

main .login-section {}

main .main-content {
    background-color: #fff;
    border-radius: 6px;
    padding: 30px;
    height: fit-content;
    margin: 0 16px;
    width: 100%;
}

main .login-section .logo-content {
    margin-bottom: 50px;
}

main.contact .logo-content .logo,
main.forgot-section .logo-content .logo {
    height: 45px;
    background-size: 150px;
}

main .logo-content .logo {
    display: block;
    width: 100%;
    margin: 0 auto 16px !important;
}

main .logo-content .logo.logo-billing {
    background: transparent url("logo_ifacere.png") no-repeat center top;
    background-size: 190px;
    height: 60px;
}

main .logo-content .logo.logo-admin {
    background: transparent url("is4tech.jpeg") no-repeat center top;
    background-size: 190px;
    height: 72px;
}

main .logo-content .logo.logo-admin.tigo {
    background-size: contain !important;
}

main .logo-content h5 {
    text-align: center;
    color: #366682;
    font-size: .96rem;
}

main .main-content form .btn {
    background-color: #366682;
    color: #ffffff;
}

main .login-section .main-content .login-screen a {
    margin-top: 10px;
    display: block;
    font-size: .7rem;
    color: #607D8B;
}

main footer {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 100vw;
}

main footer .powered_by {
    background: transparent url("powered_by_w.png") no-repeat center center;
    width: 160px;
    height: 28px;
    display: block;
    background-size: contain;
    margin-left: auto;
}

main footer a {
    color: #ffffff;
}

main .contact-section .contact-message {
    color: #ffffff;
}
main .contact-section .contact-message h2 {
    font-weight: bold;
    font-size: 2.5rem;
}

main .contact-section .contact-message .btn {
    background-color: #70c3c9bf;
    color: #ffffff;
}

main .contact-section .contact-message p {
    text-align: justify;
}

main .contact-section textarea {
    max-height: 175px;
}

/*
    C O N T A C T
 */

main.contact .main-content .form-content h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #757575;
}

.alert {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    border-radius: 0;
    padding: 25px 35px;
    border: none !important;
    opacity: 1;
    max-width: 350px;

    -webkit-transition: opacity 500ms ease-in-out;
    -moz-transition: opacity 500ms ease-in-out;
    -ms-transition: opacity 500ms ease-in-out;
    -o-transition: opacity 500ms ease-in-out;
    transition: opacity 500ms ease-in-out;
}
.hide-alert {
    opacity: 0;

    -webkit-transition: opacity 500ms ease-in-out;
    -moz-transition: opacity 500ms ease-in-out;
    -ms-transition: opacity 500ms ease-in-out;
    -o-transition: opacity 500ms ease-in-out;
    transition: opacity 500ms ease-in-out;
}

.alert.alert-danger {
    color: #ffffff;
    background-color: #F44336;
}
.alert.alert-primary {
    color: #ffffff;
    background-color: #03A9F4;
}

.alert.alert-success {
    color: #ffffff;
    background-color: #8BC34A;
}

.alert.alert-warning {
    // color: #F44336;
    background-color: #ffdb5b;
}