﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color: #f3f7fd;
    font-family: Montserrat;
    line-height: 2.07;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.form-group {
    margin-bottom: 23px;
}

.container-login {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    height: auto;
    border-radius: 8px;
    background-color: #ffffff;
    text-align: center;
    padding: 10px 5px 10px 5px;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

button, .btn {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.38;
    letter-spacing: -0.23px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn {
    width: 215px;
    height: 35px;
    max-width: 100%;
}

.btn-submit {
    background-color: #00b4e3;
}

    .btn-submit:hover, .btn-submit:focus {
        background-color: #40C6EA;
        color: #ffffff;
    }

.btn-back {
    border: solid 1px #00b4e3;
    color: #10b8e4;
    background-color: #ffffff;
}

label {
    font-size: 15px;
    color: #3f526f;
    font-weight: normal;
}

a, p {
    font-size: 15px;
    color: #3f526f;
}

input, select {
    font-size: 15px;
    line-height: 1.29;
    border-radius: 4px;
    border: 1px solid #cfd3dc;
    color: #a0a9ba;
    max-width: 100%;
}

    input:read-only {
        background-color: #dff5fb;
        color: #010b19
    }

container-login h3 {
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.55;
    letter-spacing: normal;
    text-align: center;
    color: #3f526f;
}

.site-logo {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 10px;
    max-width: 100%;
}

@media (min-width:768px) {

    input, select, .btn {
        width: 394px;
        height: 48px;
    }

    input {
        padding-left: 15px;
    }

    div.site-logo img.large {
        display: inline-block;
    }

    div.site-logo img.small {
        display: none;
    }

    a.btn {
        padding-top: 12px;
    }
}

@media (max-width:767px) {
    input, select, .btn, label {
        width: 200px;
        height: 30px;
        font-size: 12px;
    }

    input {
        padding-left: 10px;
    }

    div.site-logo img.large {
        display: none;
    }

    div.site-logo img.small {
        display: inline-block;
    }
}

h4 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.55;
    text-align: center;
    color: #3f526f;
}

.validation-summary ul {
    font-size: 15px;
    list-style-type: none;
    margin-left: -40px;
}

.validation-summary li:after {
    display: inline-block;
    content: url("../images/text-warning-icon.svg");
    margin-left: 10px;
}


.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 27px;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #3f526f;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 6px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 6px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 26px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 45px;
            animation: lds-ellipsis3 0.6s infinite;
        }

table {
    text-align: left;
}

.progress {
    margin-top: 20px !important;
    margin-bottom: 0;
    max-width: 400px;
    margin: auto;
    height: 11px;
}

    .progress .progress-bar {
        min-width: 100px;
    }

.progress-bar-danger {
    background-color: #ff003c;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}
