@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	scroll-behavior: smooth;
	list-style: none;
	text-decoration: none;
}

.logo{
	color: #2C4007;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.8rem;
	text-shadow: 0 1px 1px black;
}

.logo:hover{
	color: #2C4007;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.8rem;
}

.nav{
	margin: 10px 0px;
}

.nav-link{
	color: #455E14 !important;
	font-weight: 700;
	text-align: center;
}

.nav-link:hover{
	color: white !important;
	background: #2C4007;
	border-radius: 10px;
	box-shadow: 0 1px 2px #313131;
}


.btn-primary{
	background:#83951C;
	font-weight: 700;
	border: none;
	box-shadow: 0 1px 2px #313131;
}

.btn-primary:hover{
	background: #2C4007;
	box-shadow: 0 3px 4px black;
}


.h1color{
	color: #2C4007;
}

body{
	background: #E5EEDA;
	background-image: url("img/bg_img.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

body img{
	opacity: 0.5;
}

.card {
  max-width: 800px;
  margin: auto;
	margin-top: 50px;
	border-radius: 15px;
	
} 

.myRightCtn{
	position: relative;
	background: #BDD299;
	border-radius: 15px;
	height: 100%;
	padding: 25px;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.myLeftCtn{
	position: relative;
	background: #fff;
	border-radius: 15px;
	height: 100%;
	padding: 10px 25px 40px 25px;
	padding-left: 50px;
}

.myLeftCtn header{
	color: #2C4007;
	text-shadow: 0 1px 1px black;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

.row{height:100%}

.myCard{
	position: relative;
	background: #fff;
	border-radius: 15px;
	  -webkit-box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.7);
}

.myRightCtn header{
	color: #fff;
	font-size: 44px;
	font-weight: 700;
}

.box{
	position: relative;
	margin: 20px;
	margin-bottom: 100px;
}

.myLeftCtn .myInput{
	width: 230px;
	border-radius: 10px;
	padding: 10px;
	padding-left: 50px;
	border: none;
	border: 1px solid grey;
}

.myLeftCtn .myInput:focus {
	outline: none;
}

.myForm{
	position: relative;
	margin-top: 50px;
}

.myLeftCtn .butt {
	background: #83951C;
	color: #fff;
	width: 230px;
	border: none;
	border-radius: 10px;
	padding: 10px;
  -webkit-box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.7);
}

.myLeftCtn .butt:hover {
	background: #0C5216;
	box-shadow: 0 3px 4px black;
}

.myLeftCtn .fas {
	position: relative;
	color: #bb36fd;
	left: 36px;
}

#signin{
	margin: 20px 0 0  0;
	text-size:10px;
}
#signin b{
	color: #2C4007;
}

.bottom{
	padding-top: 40px;
	padding: 20px 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1.5rem;
}

.bottom a{
	color: white !important;
}

@media (max-width: 991.98px){
	.bottom{
		color: white !important;
	}
}

@media (max-width: 767.98px){
	.card{
		margin-top: 10px;
		margin: 10px 60px 25px 60px;
	}
	.bottom{
		color: white !important;
	}
}


.footer{
	color: #4A4A4A;
	padding-top: 50px;
}

.footer-img{
	max-width: 100%;
	width: 30px;
}

.footer-f{
	background: #C2C2C2;
	width: 100%;
	text-align: center;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #83951C; /* Set a background color */
	box-shadow: 0 1px 2px #313131;
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}