* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Nunito Sans,sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff9966, #ff5533);
  padding: 20px;
}

.container {
  background: rgb(255, 255, 255);
  max-width: 400px;
  width: 100%;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(255, 94, 98, 0.2);
}

.container header {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

form .input-box {
  margin-bottom: 20px;
}

.input-box label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #555;
}

.input-box input {
  height: 45px;
  width: 100%;
  outline: none;
  border: 1px solid #ccc;
  padding: 0 15px;
  font-size: 16px;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.input-box input:focus {
  border-color: #ff5533;
}

.forgot-password {
  text-align: right;
  margin-bottom: 15px;
}

.forgot-password a {
  color: #ff5533;
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.button {
  height: 45px;
  margin: 15px 0;
}

.button input {
  height: 100%;
  width: 100%;
  outline: none;
  color: #fff;
  border: none;
  background: linear-gradient(135deg, #ff9966, #ff5533);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button input:hover {
  background: linear-gradient(-135deg, #ff9966, #ff5533);
}

.signup-link {
  text-align: center;
  margin-top: 20px;
}

.signup-link a {
  color: #ff5533;
  text-decoration: none;
}

.signup-link a:hover {
  text-decoration: underline;
}

@media (max-width: 450px) {
  .container {
      padding: 20px;
  }
}

.logo_container {
  width: 118%; 
  background-color:rgb(200, 200, 200); 
  margin-left: -9%;
  box-shadow: 1px 1px 3px #aaaaaa;
}

.logo {
  width: 40%; 
  display: block;
  margin-left: auto; 
  margin-right: auto;
  padding-top: 10px; 
  padding-bottom: 10px;
}

.back-to-sign-in {
  text-align: left;
  margin-bottom: 15px;
}

.back-to-sign-in a {
  color: #ff5533;
  text-decoration: none;
  font-size: 0.9rem;
}

.back-to-sign-in a:hover {
  text-decoration: underline;
}