body{
	margin: 0;
	padding: 0;
	   
        background-color: #0267b1;
background-image: url(../images/home-bg.jpg);

	background-size: cover;
	font-family: sans-serif;
  background-attachment:fixed;
    
}

.box {
    width: 328px;
    min-height: 400px;
    background: white;
    color: black;
    top: 45%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    border-radius: 20px;
	    border: solid 1px #fff;
    padding: 15px 30px;
}
.copyrights {
    width: 100%;
    bottom:0;
	text-align:center;
    background: rgba(0, 0, 0, 0.45);
    color: white;  
    position: absolute;  
}
.copyrights p {
   padding:8px 0 8px 0;
   margin:0;
   font-size:12px;
   color:#e4e4e4;
}
.logo {
    width: 250px;
	/*margin-bottom:20px;*/
    /* height: 100px; */
    /* border-radius: 50%; */
    /* position: absolute; */
    /* top: -50px; */
    /* left: 35%; */
}
h1{
	margin: 0;
	padding:0 0 20px;
	text-align: center;
	font-size: 22px;
}
.box p{
	margin: 0;
	padding:0;
	font-weight: bold;
}
.box input{
	width: 100%;
	margin-bottom: 20px;
	
}
.box input[type="text"],input[type="password"]{
	border:none;
	border-bottom: 1px solid #4285f4;
	background: rgb(232, 240, 254);
	outline: none;
	height: 40px;
	color: black;
	font-size: 16px;
    padding-left:5px;
}
.box select {
	border:none;
	border-bottom: 1px solid #4285f4;
	background: transparent;
	outline: none;
	height: 40px;
	width:100%;
	color: white;
	font-size: 16px;
	margin-bottom:10px;
}
.box select:option {
	 
	color: #000;
	 
}

.box input::placeholder {
	 
	color: grey; 
}

.box input[type="submit"]
{
	border:none;
	outline: none;
	height: 40px;
	background:#fb2525;
	color: white;
	font-size: 18px;
	border-radius: 5px;
}
.box input[type=submit]:hover{
	cursor: pointer;
	background: orange; 
	color: black;
	
}
.box a{
	text-decoration: none;
	font-size: 12px;
	line-height: 20px;
	color: darkgrey;
}
.box a:hover{
	color:yellow; 
}

.btn-primary {
    border: none;
    outline: none;
    height: 40px;
    display: block;
   
   background: #4285f4;
    background: -webkit-linear-gradient(top,#4387fd,#4683ea);
    background: linear-gradient(top,#4387fd,#4683ea);
    filter: progid:DXImageTransform.Microsoft.grad;
   
    color: white !important;
    font-size: 18px !important;
    border-radius: 20px;
    text-align: center;
    line-height: 40px !important;
	margin-bottom:15px;
}
.btn-primary:hover {
  cursor: pointer;
	background:#0056e4;
	color: #000;
}

/***********************
* MODAL
***********************/
/*=== BUTTON FOR MODAL =================*/
.btn-modal {
  background: #fb2525;
  border: #fff solid 1px;
  border-radius: 3px;
  color: #fff;
  font-size: 12pt;
  padding: 8px 15px;
  text-align: center;
  min-width: 60px;
  position: relative;
  transition: all .2s ease;
  outline: none;
}

.btn-modal:hover {
  background: #2ecc71;
}

.btn-modal:active {
  color: #3498db;
}

.btn-modal-close {
  color: #aaa;
  font-size: 30px;
  text-decoration: none;
  position: absolute;
  right: 10px;
  top: 0;
}

.btn-modal-close:hover {
  color: #2ecc71;
}

.link-modal-close {
  background: #bdc3c7;
  border: #fff solid 1px;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 12pt;
  padding: 8px 15px;
  text-decoration: none;
  text-align: center;
  min-width: 60px;
  position: relative;
  transition: all .2s ease;
}

.link-modal-close:hover {
  background: #2ecc71;
}

.link-modal-close:active {
  color: #bdc3c7;
}

/*=== MODAL ==============================*/
.modal:before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  -webkit-animation: fadein .4s;
          animation: fadein .4s;
}

 

.modal:target .modal-dialog {
  position: relative;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  transition: -webkit-transform .4s ease-in-out;
  transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.modal-dialog {
   background: #4285f4;
    background: -webkit-linear-gradient(top,#4387fd,#4683ea);
    background: linear-gradient(top,#4387fd,#4683ea);
    filter: progid:DXImageTransform.Microsoft.grad;

    border: #333 solid 1px;
    border-radius: 5px;
    position: relative;
    /* top: 50%; */
    z-index: 11;
    width: 100%;
    max-width: 400px;
    margin: 8% auto; 
}
@media only screen and (max-width: 830px) {
  .modal-dialog {
    width: 90%;
  }
}
.modal-body {
  width: 100%;
  padding: 20px;
  color:#fff;
}

.modal-header,
.modal-footer {
  padding: 10px 20px;
}

.modal-header {
  border-bottom: #fff solid 1px;
  
}

.modal-header h2 {
  font-size: 14pt;
  color:#fff;
  padding:0;
  margin:0;
}

.modal-footer {
  border-top: #eee solid 1px;
  text-align: right;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
