/* Reset default margin and padding for all elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgba(54, 54, 54, 0.154);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.text 
{
color: rgb(126, 21, 66);
font-weight: bold;
text-decoration: underline;


}

/* Designe.css */
.image img {
  max-width: 150px; /* Adjust the max-width to your desired size */
  height: auto;
  margin: 10px;
}


/* Update the styling for buttons to make them responsive */
.registeracc
{
  font-size: 24px;
  background-color: rgb(126, 21, 66);
  margin-top: 20px;
  border-radius: 25px;
  padding: 15px 40px;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease;
  display: block; /* Change to block to stack buttons on small screens */
  /*width: auto; /* Make buttons take full width on small screens */
  max-width: 300px; /* Set a max-width to avoid stretching on larger screens */
  margin: 10px auto; /* Center-align buttons horizontally */
}

.forgotpwd
{
  font-size: 24px;
  background-color: rgb(126, 21, 66);
  margin-top: 20px;
  border-radius: 25px;
  padding: 15px 40px;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease;
  display: block; /* Change to block to stack buttons on small screens */
  /*width: auto; /* Make buttons take full width on small screens */
  max-width: 300px; /* Set a max-width to avoid stretching on larger screens */
  margin: 10px auto; /* Center-align buttons horizontally */
}

.changepwd
{
  font-size: 24px;
  background-color: rgb(126, 21, 66);
  margin-top: 20px;
  border-radius: 25px;
  padding: 15px 40px;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease;
  display: block; /* Change to block to stack buttons on small screens */
  /*width: auto; /* Make buttons take full width on small screens */
  max-width: 300px; /* Set a max-width to avoid stretching on larger screens */
  margin: 10px auto; /* Center-align buttons horizontally */



}
.registeracc:hover,
.forgotpwd:hover,
.changepwd:hover {
  background-color: #ef99be;
}

.note {
  font-size: 12px;
  font-style: italic;
  background-color: rgb(126, 21, 66);
  color: white;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 10px 20px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center; /* Center-align the text */
}
