﻿/*custom font*/
@import url(http://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

html {
    height: 100%;
    /*Image only BG fallback*/
    /*background: url('http://thecodeplayer.com/uploads/media/gs.png');*/
    /*background = gradient + image pattern combo*/
    /*background: 
        linear-gradient(rgba(196, 102, 0, 0.2), rgba(155, 89, 182, 0.2)), 
        url('http://thecodeplayer.com/uploads/media/gs.png');*/
}

body {
    font-family: montserrat, arial, verdana;
}
/*form styles*/
#loginform {
    width: 700px;
    margin: auto;
    margin-top:25px;
    /*margin: 25px auto;*/
    text-align: center;
    position: relative;
}

/*inputs*/
#loginform input, #loginform textarea {
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 96%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 14px;
}

/*buttons*/
#loginform .action-button {
    width: 80px;
    background: #5e6fc1;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 7px;
    cursor: pointer;
}

#loginform .action-button:hover, #loginform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}

/*headings*/
.fs-title {
    font-size: 25px;
    text-transform: uppercase;
    color: #5e6fc1;
    margin-bottom: 15px;
}

.login-hidden {
    display: none;
}

.login-lbl {
    font-size: 16px;
    text-transform: uppercase;
}

.login-err-lbl {
    font-size: 20px; 
    color: red;
    font-weight:bold;
}

.login-radbtn {
    font-size: 16px;
}

#loginform .half-width {
    width:49%;
}

.login-copyright {
    font-size:10pt;
}

.loading-overlay {
    background: #adadad; 
    display: none;        
    position: absolute;   
    top: 0;                  
    right: 0;                
    bottom: 0;
    left: 0;
    opacity: 0.5;
}

.loader {
  border: 2px solid #f3f3f3; /* Light grey */
  border-top: 2px solid #3498db; /* Blue */
  border-bottom: 2px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 2s linear infinite;
}

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