/*=============================================================
*
* Login Page
*
*============================================================*/
html {
  background: #E4E1E6;
  width: 100vw;
  height: 100vh;
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .025em;
    color: #252226;
}
.login-box {
  width:	20vw;
	height: 50vh;
  margin: 15vh auto 0 auto;
	padding: 50px;
	text-align: left;
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	background: #fff;
	box-shadow: 0px 6px 12px rgba(12, 5, 13, .15);
	-webkit-box-shadow: 0px 6px 12px rgba(12, 5, 13, .15);
	-moz-box-shadow: 0px 6px 12px rgba(12, 5, 13, .15);
}
.login-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.logo-left{
	float: left;
}
.input-container {
  width: 80%;
  height: auto;
  margin: 0 auto;
  padding: 20px 0;
}
input, select {
  width : 100%;
  height : 35px;
  margin: 10px auto 0 auto;
  border : 1px solid #7D7580 !important;
}
input::placeholder, select::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .025em;
  color: #B0A8B3;
  opacity: 1; /* Firefox */
}
input:-ms-input-placeholder, select::placeholder { /* Internet Explorer 10-11 */
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .025em;
  color: #B0A8B3;
  opacity: 1; /* Firefox */
}
.entryfield {
	position: relative;
	border-width: 1px;
	padding: 6px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}
.languageChoice {
  height: 35px;
}
.entryfield_small {
	position: relative;
	border-width: 1px;
	border: 1px solid #aaa;
	padding: 4px;
	font-color: #666;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.entryfield:focus {
	background: #F4F2F5;
  border-color: rgba(172, 95, 194, 0.75) !important;
  box-shadow: 0 0 7px rgba(172, 95, 194, 0.5);
  outline: none;
	-webkit-transition: 0.2s linear all;
	-moz-transition: 0.2s linear all;
	transition: 0.2s linear all;
}

.title_name {
	margin-top: 10px;
	padding-left: 5px;
}

.titlebar {
	height:40px !important;
}

/* :..[ Social Icons ]..: */

.demo {margin-left: auto; margin-right: auto; display: block; width: 200px; height: auto; padding:20px 0px 0 0 }

/* :..[ Buttons ]..: */

.button {
  width: 10vw;
	display: block; /* Proper */
	margin: 10px auto 0 auto !important;

	/*	Generic Font Styles */
	/* outline: none; */ /* Here be dragons! */
  color: #fff;
	font-size: 14px;
  letter-spacing: .025em;
  text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	vertical-align: middle;


	/*	Border Radius */
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;

	/*	Box Shadow */
  box-shadow: 0px 2px 4px rgba(12, 5, 13, .15);
	-webkit-box-shadow: 0px 2px 4px rgba(12, 5, 13, .15);
	-moz-box-shadow: 0px 2px 4px rgba(12, 5, 13, .15);
	/* We could simulate this in IE with ('glow') filters, but we will not... */

	/*	DEFAULT Color: Grey */
  border: none !important;
	border-top: 1px solid #C5B1CA !important;
  border-bottom: 1px solid #35173D !important;
	background-color: #602A6F; /* Basic fallback */;
  background: linear-gradient(0deg, rgba(96,42,111,1) 0%, rgba(172,95,194,1) 100%);
}
.button:hover{
        background: #AC5FC2 ;
        border: none !important;
}

.button:active
{
        -moz-box-shadow: 0 0 4px 2px rgba(0,0,0,.3) inset;
        -webkit-box-shadow: 0 0 4px 2px rgba(0,0,0,.3) inset;
        box-shadow: 0 0 4px 2px rgba(0,0,0,.3) inset;
        position: relative;
        top: 1px;
}

.button:focus{
        outline: 0;
        background:#AC5FC2;
}
.text {
  color: red;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
}
/*
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media only screen and (max-width: 768px) {

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr {
		display: block;
	}

	tr { border: 1px solid #ccc; }

	td {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 50%;
	}

	td:before {
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
	}

}
