/* Basic resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  background-color:rgb(0, 123, 255);
  color:black;
}

/* Containers */
.signin-container,
.forgot-section .container,
.signup-section .container {
  width: 100%;
  max-width: 400px;
  margin: 2rem auto;
  padding: 1.5rem;
  background:rgb(208, 205, 205);
  border-radius: 8px;
  /* border: 5px solid black; */
  box-shadow: 0 0 15px 10px rgba(240, 235, 239, 0.984);

  margin-top: 130px;
}

h1, h2 {
  text-align: center;
  margin-bottom: 1rem;
  color:rgb(93, 5, 93);
}

/* Form groups */
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
}
.form-group input {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 1rem;
}
.form-group input:focus {
  border-color: salmon;
  outline: none;
}

/* Options line */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.form-options a {
  text-decoration: none;
  color:red;
  font-weight: bold;
}
.form-options a:hover {
  text-decoration: underline;
}

/* Buttons */
button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background:red;
  color:white;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
}
button:hover {
  /* background:white;
  color: red; */
  transform: scale(1.1);
}

/* Hide forgot & signup initially */
.forgot-section,
.signup-section {
  display: none;
  margin-top: 2rem;
}

/* Signup text link */
.signup-text {
  text-align: center;
  margin-top: 1rem;
}
.signup-text a {
  color:red;
  text-decoration: none;
  font-weight: bold;
}
.signup-text a:hover {
  text-decoration: underline;
}


.back{
  color:red;
  text-decoration: none;
  font-weight: bold;

}

.back:hover{
  border-bottom: 2px solid red;
}














