*{
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
}
body{
	margin: 0;
	padding: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #80c6a4;
}

header {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
  }

  .logo{
    width: 10rem;
}

.GetHelp{
    border: 0;
    width: 8rem;
    height: 3.0rem;

    background-color: #FDC309;
    border-radius: 1.25rem;
    font-weight: bold;
    font-size: 1rem;
    color: #5E4400;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  
  
  }
  
  /* Hover effect */
  .GetHelp:hover {
    background-color: wheat; /* Move the button up slightly on hover */
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.3); /* Increase shadow size on hover */
  }
  
  /* Active effect */
  .GetHelp:active {
    transform: translateY(3px); /* Move the button down slightly when clicked */
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2); /* Decrease shadow size when clicked */
  }
.container{
	width: 350px;
	background-color: white;
	border-radius: 5px;
	padding: 20px;
	text-align: center;
}
.container input{
	width: 100%;
	padding: 10px;
	border: none;
	border-bottom: 2px solid #777777;
	margin-bottom: 20px;
	font-size: 16px;
	outline: none;
}
.btn{
	border: none !important;
	cursor: pointer;
	background-color: #9FC9B5;
	margin: 15px 0;
	font-size: 16px;
	width: 100%;
	padding: 14px;
}
.btn:hover{
	background-color: #1f7d5f;
	color: white;
}

.flash-messages {
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    color: #333;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
}

.flash-messages p {
    margin: 5px 0;
}
