/* 
Design made by Wesley Fitzgerald
Made for Lathrom Manufacturing Inc
4/8/2024
*/

#logbox-contain{
	margin: 0 auto;
    height: 375px;
	width: 500px;
	background-color: rgb(30,30,30);
	background-color: rgba(30,30,30,.8);
	border-radius: 15px;
	box-shadow: 10px 5px 9px rgba(255,255,255,0.15);
}
#log-top{
	margin: 0 auto;
	display: flex;
	width: 100%;
	height: 20%;
	background-color: grey;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
#log-top h1{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: black;
    text-align: center;
    font-style: italic;
    font-size: 1.5em;
    text-shadow: 1px 1px 2px rgb(20,20,20);
}
.log-top-hover:hover{
    border-style: inset !important;
    background-color: rgb(150,150,150) !important;
    cursor: pointer;
}

#log-left-top{
	width: 50%;
	height: 100%;
	background-color: rgb(180,180,180);
	border-top-left-radius: 15px;
	border-style: outset;
	border-color: black;
}

#log-right-top{
	width: 50%;
	height: 100%;
	background-color: rgb(180,180,180);
	border-top-right-radius: 15px;
	border-style: outset;
	border-color: black;
}
#log-body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: -25px;
    text-align: center;
}
#log-body input[type=submit]{
    font-size: 0.9em;
}
#log-body input[type=submit]:hover{
    background-color: rgb(150,150,150) ;
}
#log-body input::placeholder{
    font-size: 0.8em;
    font-style: italic;
}
#log-body input[type=text], input[type=password]{
    width:300px;
}
#log-info table tr td:first-child{
    text-align: right;   
}
#reg-info table tr td:first-child{
    text-align: right;   
}
#log-info table tr td{
    padding: 4px;
}
#reg-info table tr td{
    padding: 4px;
}
#log-info table tr:last-child td{
    text-align: center;
}
#everify-block{
    width: 100%;
    text-align: center;
}
.log-select{
    border-style: inset !important;
    background-color: rgb(150,150,150) !important;
}
.hide-class{
    display:none;
}
.inp-error{
    background-color: rgb(255,150,150);
}
.right-align{
    text-align: right;
}
.log-error{
    color: red;
    font-style: italic;
    font-weight: bold;
}
.success{
    color:rgb(0, 219, 37);
}
