
/* Animation keyframes */
:root {
    --main-font-family: "Tajawal", sans-serif;
    --main-color: #0aae7e;
}

.background {
    height: 100vh;
    /*background: linear-gradient(rgba(255, 255, 255, 0.377)),url("/assets/images/side-bg.png");*/
    background: linear-gradient(rgba(255,255,255,0.85)), url("/assets/images/adminpattern/pattern8.jpg");
    background-size: 400% 400%;
    background-repeat: no-repeat;
    background-size: cover;
}

.shadow {
    box-shadow: 20px 20px 15px rgba(10, 10, 10, 0.2) !important;
}

.text-green {
    color: var(--main-color);
}

.text-font-family {
    font-family: var(--main-font-family) !important;
    font-weight: 700 !important;
}

.text-fw {
    font-weight: 600;
}

main {
    padding: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 285px;
    margin: 0 auto;
}

.form-outline {
    padding: 10px 0;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    position: relative;
    /* border-top:3px solid var(--main-color) */
}

    .form-outline::before {
        content: "";
        position: absolute;
        border-top: 3px solid var(--main-color);
        border-left: 3px solid var(--main-color);
        width: 15%;
        height: 10%;
        margin: -12px auto;
        transition: all 0.6s ease-in-out;
        border-top-left-radius: 12px;
    }

    .form-outline::after {
        content: "";
        position: absolute;
        border-bottom: 3px solid var(--main-color);
        border-right: 3px solid var(--main-color);
        width: 15%;
        height: 10%;
        left: 85%;
        top: 90%;
        margin: auto;
        transition: all 0.6s ease-in-out;
        border-bottom-right-radius: 12px;
    }

 

.form-floating > label {
    left: auto !important;
    right: 0 !important;
}

.form-control:focus + label {
    padding-right: 0 !important;
}

.mobile-form {
    padding-left: 30px;
    padding-right: 30px;
}

.form-control:focus {
    border-color: #0aae7e !important;
    box-shadow: 0 0 0 0.25rem #0aae7d38 !important;
}


.text-gray {
    color: #504e4e;
}

.btn {
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    outline: none;
    border: none;
    background-image: linear-gradient(to right, #32be8f, #38d39f, #32be8f);
    background-size: 200%;
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
}

    .btn:hover {
        background-position: right;
    }

.form {
    margin: 0 auto;
    padding: 25px;
}

.logo-img {
    width: 100px;
    border-radius: 50%;
}

@media (min-width:768px) {
    main {
        padding: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        width:500px;
        transform: translate(-50%,-50%);
        margin: 0 auto;
    }
}

@media (min-width:992px) {
    .btn {
        display: block;
        width: 50%;
        height: 50px;
        border-radius: 25px;
        outline: none;
        border: none;
        background-image: linear-gradient(to right, #32be8f, #38d39f, #32be8f);
        background-size: 200%;
        font-size: 1.2rem;
        color: #fff;
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
        margin: 1rem 0;
        cursor: pointer;
        transition: .5s;
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%,10%);
    }
}

@media (min-width:1200px) {
    main {
        padding: 50px;
        position: absolute;
        top: 49%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0 auto;
        width: 33%;
    }
}

@media (min-width:1500px) {
    main {
        padding: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        margin: 0 auto;
        
    }
    .background {
        height:100vh;
    }
}
.spinner {
    margin:  auto ;
    padding-top:10px;
    width: 70px;
    text-align: center;
}

    .spinner > div {
        width: 9px;
        height: 9px;
        background-color: #fff;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .spinner .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .spinner .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}