@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html, 
body
{
    height: 99%;
}

body
{
	font-size: 12px;
	font-family: Roboto,sans-serif;
	font-weight: normal;
	line-height: 20px;
	background-color: #E5E5E5;
}

a
{
	color: #4380F6;
	font-style: normal;
	font-weight: 500;
	text-decoration: none;
}

.dem-central-message
{
	display: none;
	position: absolute;
	top: calc((100vh / 2) - 50px);
	left:  calc((100vw / 2) - 250px);
	height: 100px;
	width: 500px;
	background-color: #292543;
	text-align: center;
	border-radius: 8px;
}

.dem-central-text
{
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	line-height: 55px;
	color: #7CE6FF;
}

.login-center
{
    background-image: url('../img/bckg.jpg');
	background-repeat: no-repeat;
    background-size: cover;
	height: 100%;
}

.wrapper
{
	height: 524px;
	width: 370px;
	margin: auto;
	margin-top: 30px;
	border-radius: 8px;
	background-color: #fff;
}

.startlogo
{
	padding-top: 43px;
	text-align: center;
}

.startlab
{
	font-size: 14px;
	font-weight: 500;
	color: #4380F6;
	cursor: pointer;
}

.textedit
{
	width: 276px;
	margin-left: 47px;
	border: none;
	background-color: #fff;
	
	font-family: Roboto;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;	
}

.textedit:focus
{
	outline: 0;
}

.textedit::-moz-placeholder
{
	color: #999;
	opacity: 1;
}

.textedit:-ms-input-placeholder
{
	color: #999;
}

.textedit::-webkit-input-placeholder
{
	color: #999;
}

.textedit::-ms-expand
{
	background-color: transparent;
	border: 0;
}

.textedit2
{
	width: 276px;
    margin-left: 2px;
    margin-top: 22px;
    height: 38px;
    border: 1px solid #14112e;
    border-radius: 4px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    padding-left: 6px;
}

.underline
{
	height: 2px;
	border-width:0;
	color: gray;
	background-color: #F4F2F2;
	width: 278px;
	margin-left: 47px;
}

/* Checkbox */
.container
{
	display: inline;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 400;
	color: #0F0F0F;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.container input
{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark
{
  position: absolute;
  top: -4px;
  left: 0;
  height: 19px;
  width: 19px;
  background-color: #fff;
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  border-color: #D9D4D4;
/*
	position: absolute;
	top: -4px;
	left: 3px;
	height: 25px;
	width: 25px;
	background-color: #eee;
*/
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark
{
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark
{
	background-color: #7CE6FF;
	border-color: #7CE6FF;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after
{
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after
{
	display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after
{
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}


.modal-run
{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 2%; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-run-content
{
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	font-size: 16px;
	line-height: 20px;
	width: 350px;
}

/* The Close Button */
.modal-run-close
{
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.modal-run-close:hover,
.modal-run-close:focus
{
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.button-color
{
	margin-left: 47px;
	margin-top: 60px;
	width: 276px;
	height: 46px;
	padding: 6px 12px;
	font-size: 18px;
	font-weight: 700;
	font-style: normal;
	border: 1px solid transparent;
	border-radius: 6px;
	background-color: #14112e;
	color: #7CE6FF;
	cursor: pointer;
}

.button-color.type2
{
	margin-top: 45px;
}

.help-block
{
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}
