* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
input {
  font-family: "Poppins", sans-serif;
}

.container {
  background-image: url("../img/loginnovo.png");
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat; 
  background-size: cover;
  background-attachment: fixed;
}

.signin-signup {
  position: absolute;
  top: 30%;
  width: 50%;  
}

form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.2s 0.7s;
  overflow: hidden;
}

.input-field {
  max-width: 320px;
  width: 100%;
  margin: 5px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid black;
  display: relative;
  padding: 5px 10px;
  background-color: rgba(255,255,255,0.2);  
}

.input-field input {
  max-width: 260px;
  background: none;
  outline: none;
  border: none;
  font-size: 1.5rem;
  color: #006400;
}

.input-field input::placeholder {
  color: #006400;
  font-size: 1.5rem;
  padding: 5px 5px;
}

.btn {
  width: 200px;
  background-color: #006400;
  border: none;
  outline: none;
  height: 40px;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  margin: 10px 0;
  cursor: pointer;
  transition: 0.5s;
  font-size: 1.4rem;
}

.btn:hover {
  background-color: #6b1010;
}

.error-message {
    color: var(--accent-color);
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
    animation: shake 0.5s;
}



