/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 27 May 2019, 11:21:21 AM
    Author     : Neel
*/

body {
    background: white;
    padding: 0px;
    margin: 0px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
}

input, button, select, textarea {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    border-radius: 5px;
}

.login-div{
    width: 20%;
    margin: 0px auto;
    margin-top: 150px;
    padding: 20px;
}

.loggedin-div{
    width: 80%;
    margin: 0px auto;
    margin-top: 50px;
    padding: 20px;
    display: none;
}

.admin-div{
    width: 80%;
    margin: 0px auto;
    margin-top: 50px;
    padding: 20px;
    display: none;
}


.login-div input {
    display: block;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: whitesmoke;
    padding: 15px;
    outline: none;
    width: 100%;
    margin-bottom: 20px;
}

.login-div input:focus {
    border: 1px solid #777;
}

.login-div button, .loggedin-div button {
    background: #5d8ffc;
    color: whitesmoke;
    border: 1px solid #5d8ffc;
    padding: 15px;
    display: block;
    margin: 0 auto;
    width: 80%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;    
}

.loggedin-div button {
    background: #5d8ffc;
    color: whitesmoke;
    border: 1px solid #5d8ffc;
    padding: 15px;
    display: block;
    margin-right: 20px;
    margin-top: 20px;
    width: 20%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;    
}

.login-div button:hover, .loggedin-div button:hover {
    background: whitesmoke;
    color: #5d8ffc;
    border: 1px solid #5d8ffc;
    cursor: pointer;
}

.download_button button{
    background: gray;
    color: whitesmoke;
    border: 1px solid gray;
    padding: 15px;
    display: block;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 20%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;    
}

.download_button button:hover, .bulk_user_reg_button button:hover {
    background: whitesmoke;
    color: gray;
    border: 1px solid gray;
    cursor: pointer;
}

.bulk_user_reg_button button{
    background: lightgray;
    color: white;
    border: 1px solid lightgray;
    padding: 15px;
    display: block;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 20%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;    
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

.loggedin-div input, select, textarea{
    display: block;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: whitesmoke;
    padding: 15px;
    outline: none;
    width: 95%;
    margin-bottom: 20px;
}

.loggedin-div input:focus {
    border: 1px solid #777;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-50 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.col-90 {
  float: left;
  width: 25%;
  margin-left: 30px;


}

.row button {
    background: #5d8ffc;
    color: whitesmoke;
    border: 1px solid #5d8ffc;
    padding: 15px;
    display: block;
    margin-left: 0;
    margin-bottom: 20px;
    width: 20%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;    
}

.col-90 button {
    background: black;
    color: whitesmoke;
    border: 1px solid whitesmoke;
    padding: 10px;
    display: block;
    margin-bottom: 20px;
    width: 50%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;    
}

.col-90 button:hover {
    background: whitesmoke;
    color: black;
    border: 1px solid gray;
    cursor: pointer;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.submit_div button {
    background: limegreen;
    color: whitesmoke;
    border: 1px solid limegreen;
    padding: 15px;
    display: block;
    margin-right: 20px;
    margin-top: 20px;
    width: 25%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;    
}

.submit_div button:hover {
    background: whitesmoke;
    color: limegreen;
    border: 1px solid limegreen;
    cursor: pointer;
}