﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.form-container {
    background: linear-gradient(150deg,#1B394D 33%,#067baf 34%,#00b0ff 66%,#a84d97 67%);
    font-family: 'Raleway', sans-serif;
    text-align: center;
    padding: 30px 20px 50px;
}

    .form-container .title {
        color: #fff;
        font-size: 23px;
        text-transform: capitalize;
        letter-spacing: 1px;
        margin: 0 0 60px;
        font-family: 'fontNormalMactaPlusTaral';
    }

    .form-container .form-horizontal {
        background-color: #fff;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 0 20px rgba(0,0,0,0.4);
    }

.form-horizontal .form-icon {
    color: #fff;
    background-color: #1B394D;
    font-size: 75px;
    line-height: 92px;
    height: 90px;
    width: 90px;
    margin: -65px auto 10px;
    border-radius: 50%;
}

.form-horizontal .form-group {
    margin: 0 0 10px;
    position: relative;
}

    .form-horizontal .form-group:nth-child(3) {
        margin-bottom: 30px;
    }

    .form-horizontal .form-group .input-icon {
        color: #e7e7e7;
        font-size: 23px;
        position: absolute;
        left: 0;
        top: 10px;
    }

.form-horizontal .form-control {
    color: #424242;
    font-size: 14px;
    font-weight: 600;
    height: 50px;
    padding: 10px 10px 10px 40px;
    margin: 0 0 5px;
    border: none;
    border-bottom: 2px solid #a84d97;
    border-radius: 0px;
    box-shadow: none;
    font-family: 'fontNormalMactaPlusTaral';
}

    .form-horizontal .form-control:focus {
        box-shadow: none;
        border-bottom-color: #008fcf;
    }

    .form-horizontal .form-control::placeholder {
        color: #424242;
        font-size: 14px;
        font-weight: 600;
    }

.form-horizontal .forgot {
    font-size: 13px;
    font-weight: 600;
    text-align: right;
    display: block;
}

    .form-horizontal .forgot a {
        color: #777;
        transition: all 0.3s ease 0s;
    }

        .form-horizontal .forgot a:hover {
            color: #777;
            text-decoration: underline;
        }

.form-horizontal .signin {
    color: #fff;
    background-color: #a84d97;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 2px;
    width: 100%;
    padding: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: all 0.4s ease 0s;
    font-family: 'fontNormalMactaPlusTaral';
}

    .form-horizontal .signin:hover,
    .form-horizontal .signin:focus {
        font-weight: 600;
        letter-spacing: 5px;
        box-shadow: 0 0 10px rgba(0,0,0,0.3) inset;
    }



.loading1 {
    position: relative;
/*    top: 120px;
    left: 100px;*/
    width: 50px;
    height: 50px;
    margin:auto;
    text-align:center;
    border: 1px solid #0663a8;
    box-shadow: 0 0 5px #008fcf;
    animation: spinner 2s infinite;
}

#loading1-2 {
    border: 2px solid #79227f;
    box-shadow: 0 0 10px #a84d97;
    animation: spinner 4s infinite;
    margin-top: -50px;
}



@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes expand {
    0% {
        width: 50px;
        height: 50px;
        left: 900px;
        top: 120px;
    }

    50% {
        width: 0px;
        height: 0px;
        top: 140px;
        left: 920px;
        opacity: 0;
    }
}

.LoadingBase {
    position: absolute;
    height: 100px;
    background: #f4f6f9;
    width: 100px;
    padding-top: 25px;
    top: 40%;
    left: 40%;
    z-index: 111111111111;
}