/* Add this to your CSS file */

* {
padding: 0;

font-family: 'Roboto', sans-serif; 

}

body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif; 
}

.sign-up-page {
  min-height: 100%;
  align-items: center;
  text-align: center;
  background-color: #f2f2f2; /* Light grey background */
  padding-top: 50px;
  padding-bottom: 100px;
}

.sign-up-page p {
  color: #707070;
  font-size: 18px;
}



.sign-up-page form p {
  margin-bottom: -30px; /* Reduce the bottom margin of each paragraph */
  padding: 5px; /* Optional: adjust padding if needed */
  font-size: 18px;
}

 

form {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);

}
  
h2 {
  color: #333; /* Dark grey color for the heading */
}

input[type=text], input[type=password], input[type=email] {
  width: 80%;
  padding: 15px;
  margin: 5px 0 22px 0;
  display: inline-block;
  border: none;
  background: #f1f1f1;
}

input[type=text]:focus, input[type=password]:focus, input[type=email]:focus {
  background-color: #ddd;
  outline: none;
}

button {
  background-color: skyblue;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

.sign-up-page button{
  font-size: 18px;
  font-weight: bold;
}
.motto{
  margin-top: 40px;
  font-weight: bold;
  font-size: 20px;
  font-style: italics;
  color: gray;
}



.signup-tittle h1{
  color: white;
  background-color: green;
  display: inline; /* or inline-block */
  padding: 10px; /* Optional: for some space around the text */
}

button:hover {
  opacity: 1;
  background-color: rgb(27, 182, 243);
}

a {
  color: dodgerblue;
}


.placeholder-font-size {
font-size: 16px; 
}

/* Style for the placeholder pseudo-element */
.placeholder-font-size::placeholder {
  font-size: 16px; 
}

/* login */

.login-container{
  min-height: 100%;
  align-items: center;
  text-align: center;
  background-color: #f2f2f2; /* Light grey background */
  padding-top: 100px;
  padding-bottom: 100px;

}
.login-button{
  font-size: 18px;
  font-weight: bold;
}

.login-container p{
  font-size: 18px;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    font-size: 18px; /* Adjust the size as needed */
}

.errorlist {
  color: blue;
  font-style: italics;
}

.error {
  color: blue;
  font-style: italics;
}


/* spinner for login page */

.spinner {
  border: 4px solid #f3f3f3; /* Reduced border thickness */
  border-radius: 50%;
  border-top: 4px solid #3498db; /* Top border with color, also reduced */
  width: 40px; /* Adjust size to your preference */
  height: 40px; /* Adjust size to your preference */
  animation: spin 2s linear infinite;
  position: fixed;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
