body, html{
    padding-top: 50px;
    height: 100%;
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.no_script{
    left: 0;
    line-height: 200px;
    margin-top: -100px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
    background-color: darkgray;
}

.fa-check{
    color:green ;
}

.fa-times{
    color: red;
}

.main{
    margin:50px 15px;
}

form div {
    margin: 10px;
}

.form-group {
    margin-right: 25px;
}

.main-login{
    background-color: #fff;
    /* shadows and rounded borders */
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

#sub{
    color: aliceblue;
    margin-top: 20px;
}

.main-center{
    margin: 30px auto;
    max-width: 600px;
    padding: 10px 40px;
    background: #fff;
    color:#555;
    text-shadow: none;
    -webkit-box-shadow: 0 3px 5px 0 rgba(0,0,0,0.31);
    -moz-box-shadow: 0 3px 5px 0 rgba(0,0,0,0.31);
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.31);
}

.navbar.center .navbar-inner {
    text-align: center;
}

#spinner_big {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    border: 32px solid #f3f3f3; /* Light grey */
    border-top: 32px solid #3498db; /* Blue */
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
}

.spinner {
    position: relative;
    alignment: center;
    top: 50%;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 10px auto auto auto;
    animation: spin 2s linear infinite;
    -webkit-animation: spin 2s linear infinite;
}

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

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