body
{
    background-color: Black;
}

.main-content{
	width: 80%;
	border-radius: 20px;
	box-shadow: 0 5px 5px rgba(0,0,0,.4);
	margin: 5em auto;
	display: flex;
}
.company__info{
	background-color: #008080;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
}
.fa-android{
	font-size:3em;
}
@media screen and (max-width: 640px) {
	.main-content{width: 90%;}
	.company__info{
		display: none;
	}
	.login_form{
		border-top-left-radius:20px;
		border-bottom-left-radius:20px;
	}
}
@media screen and (min-width: 642px) and (max-width:800px){
	.main-content{width: 70%;}
}
.row > h2{
	color:#008080;
}
.login_form{
	background-color: #fff;
	border-top-right-radius:20px;
	border-bottom-right-radius:20px;
	border-top:1px solid #ccc;
	border-right:1px solid #ccc;
}
form{
	padding: 0 2em;
}
.form__input{
	width: 100%;
	border:0px solid transparent;
	border-radius: 0;
	border-bottom: 1px solid #aaa;
	padding: 1em .5em .5em;
	padding-left: 2em;
	outline:none;
	margin:1.5em auto;
	transition: all .5s ease;
}
.form__input:focus{
	border-bottom-color: #008080;
	box-shadow: 0 0 5px rgba(0,80,80,.4); 
	border-radius: 4px;
}


button {
    display:inline-block;
    position: relative;
    height: 50px;
    padding: 0 30px;
    border: 2px solid #008080;
    background: #FFFFFF;
    user-select: none;
    white-space: nowrap;
    transition: all .05s linear;
    font-family: inherit;
   }
   
   button:before, button:after {
    content: "";
    position: absolute;
    background: #FFFFFF;
    transition: all .2s linear;
   }
   
   button:before {
    width: calc(100% + 6px);
    height: calc(100% - 16px);
    top: 8px;
    left: -3px;
   }
   
   button:after {
    width: calc(100% - 16px);
    height: calc(100% + 6px);
    top: -3px;
    left: 8px;
   }
   
   button:hover {
    cursor: crosshair;
   }
   
   button:active {
    transform: scale(0.95);
   }
   
   button:hover:before {
    height: calc(100% - 32px);
    top: 16px;
   }
   
   button:hover:after {
    width: calc(100% - 32px);
    left: 16px;
   }
   
   button span {
    font-size: 15px;
    z-index: 3;
    position: relative;
    font-weight: 600;
    color: #008080;
   }

   input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

table td
{
	  font-weight: normal;
	  font-size: 1em;
  -webkit-box-shadow: 0 8px 7px -5px #f7f700;
	   -moz-box-shadow: 0 8px 7px -5px #f7f700;
	        box-shadow: 0 8px 7px -5px #f7f700;
    color: white;
}
table td, table th {
  padding-bottom: 1%;
  padding-top: 1%;
  padding-left:1%;  
}
table th {
  background-color: #000000;
  color: white;
}
table tr:hover {
  background-color: #000000;
-webkit-box-shadow: 0 6px 6px -6px #0E1119;
    -moz-box-shadow: 0 6px 6px -6px #0E1119;
         box-shadow: 0 6px 6px -6px #0E1119;
}
table td:hover {
  background-color: #FFF842;
  color: #403E10;
  font-weight: bold;
  
  box-shadow: #7F7C21 -1px 1px, #7F7C21 -2px 2px, #7F7C21 -3px 3px, #7F7C21 -4px 4px, #7F7C21 -5px 5px, #7F7C21 -6px 6px;
  transform: translate3d(6px, -6px, 0);
  
  transition-delay: 0s;
	  transition-duration: 0.4s;
	  transition-property: all;
  transition-timing-function: line;
}
