/* Code in 'style.css' */

.logincontent{
	margin: 0 auto;
	height: 500px;
	width: 400px;
	/* background-color: yellow; */
	background-color: #e6ffee;
	/* color: red; */
	border-radius: 10px;

}

.registercontent{
	margin: 0 auto;
	height: 720px;
	width: 400px;
	background-color: #e6ffee;
	border-radius: 10px;
}


.logintop{
	height: 60px;
	width: 400px;
	background-color: #009933;
	color: #ffffff;
	/* color: red; */
}

.registertop{
	height: 60px;
	width: 400px;
	background-color: #009933;
	color: #ffffff;
}

.textbox{
	padding: 10px 40px;
	background-color: #009933;
	border-radius: 10px;
	width: 400px;

}

::placeholder {
	color: #FFFFFF;
	opacity: 1;
	font-style: oblique;
	font-weight: bold;

}

.btn {
	padding: 10px 40px;
	background-color: #009933;
	color: #FFFFFF;
	font-style: oblique;
	font-weight: bold;
	border-radius: 10px;
}

.worddark{
	color: red;
	/* color: #009933; */
	font-style: oblique;
	font-weight: bold;
}

.wordlight{
	color: #FFFFFF;
	font-style: oblique;
	font-weight: bold;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	font-family: 'Josefin Sans', sans-serif;
}

.one{
	display: flex;
	position: relative;
}

.one .two{
	width: 225px;
	height: 100%;
	background: #009933;
	/* padding: 30px 0px; */
	position: fixed;
}

.one .two h1{
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 30px;
	font-style: oblique;
	font-weight: bold;
}

.one .two h2{
	color: #fff;
	text-align: center;
}

.one .two .active{
	background: #0a8032;
}

.one .two ul li{
	text-align: center;
	padding: 15px;
	border-bottom: 0.1px solid white;
	border-top: 0.1px solid white;
}

.one .two ul li a{
	color: #ffffff;
	display: block;
}

.one .two ul li a .side{
	width: 25px;
	align:center;
}

.one .content{
	width: 100%;
	margin-left: 200px;
}

.one .content .topbar{
	text-align: center;
	padding: 10px;
	background: #00b33c;
	color: white;
}

.one .content .contentbar{
	margin: auto;
}

.one .content .contentbar h1{
	color: #11a844;
	text-align: center;
	font-style: oblique;
	font-weight: bold;
}

// Style for Displaying the registered newcomers
body{
margin: 2em;
}

table{
margin: 2em;
// border-collapse: collapse;
}

tr:nth-child(odd){
background-color: lightblue;
}

th{
padding-right: 2.5em;
}

td{
padding-right: 0.5em;
}

.clickable-row {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}