@import url(./style.css);

html,
body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url('../assets/images/bg.png');
  background-size: 100%;
}

/* === FORM STYLES === */
#login-form {
  display: flex;
  flex-direction: column;

  width: 500px;
  height: 400px;

  background-color: rgba(255, 245, 230, 0.85);
  border-radius: 15px;

  align-items: center;
  justify-content: center;
}

.login-header {
  font-family: var(--font-base);
  font-size: 1.8rem;
}

/* === INPUTS === */
input {
  width: 300px;
  padding: 10px;

  border: 1px solid #ffd1b4;
  border-radius: 8px;
}

input:focus {
  outline: none;
  border-color: #ffad7f;
  box-shadow: 0 0 6px rgba(255, 173, 127, 0.4);
}

#email {
  margin-top: 40px;
}

#password {
  margin-top: 5px;
  margin-bottom: 20px;
}

::placeholder {
  font-weight: var(--font-base);
}

/* === BUTTON === */
button {
  width: 150px;
  padding: 10px;

  font-family: var(--font-base);
  font-size: 1rem;

  border-radius: 15px;
  background-color: orange;
  border: none;

  transition: all 0.2s ease;
}

button:hover {
  background-color: rgb(226, 54, 16);
  color: white;
}

#login-message {
  margin-top: 20px;
}
