.loginCon{
    background-color:#1A2454;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*padding: 5px;*/
}

.boxContent{
    background-color: #FFF;
    width: 35%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.dataEntry {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
}

.inputLabel {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

input, button {
    margin-top: 5px;
    height: 45px;
    width: 100%;
    border-radius: 7px;
    border-style: none;
}

input {
    border: 1px solid #D3D2D2;
    padding: 5px 0px 5px 5px;
    color: #47464F;
    font-size: 90%;
}

button {
    background-color: #2D3888;
    color: #FFF;
    font-size: 100%;
}

label {
    color: #47464F;
    font-size: 85%;
    opacity: 0.9;
    margin: 10px 0px;
}

.loaderWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #3498db;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite;
      animation: spin 1.5s linear infinite;
}

.loadLabel {
    display: block;
    position: relative;
    left: 43%;
    top: 30%;
    color: #FFF;
    font-weight: bold;
    -webkit-animation: shadowText 3s ease-out infinite alternate;
    animation: shadowText 3s ease-out infinite alternate;
}

@-webkit-keyframes shadowText {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@-webkit-keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}