@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  text-decoration: none;
}

.header .logo {
  font-size: 1.7em;
  color: #fcdd8f;
  text-decoration: none;
}

.header p {
  color: #fcdd8f;
}

.nav a {
  position: relative;
  font-size: 1.1em;
  color: #fcdd8f;
  text-decoration: none;
  margin-left: 40px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #fcdd8f;
  border-radius: 5px;
  transform: scaleX(0);
  transition: 0.5s;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.home {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("paintingbg7.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 100px 0;
}

.home .content {
  max-width: 600px;
  color: #fcdd8f;
  /* background: -webkit-linear-gradient(#71412a, #fff, #fcdd8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.content h2 {
  font-size: 4em;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.content p {
  margin: 10px 0 40px;
  font-size: 1em;
  font-weight: 500;
}

.content a {
  color: #fcdd8f;
  text-decoration: none;
  font-size: 1em;
  border: 2px solid #fcdd8f;
  font-weight: 500;
  padding: 10px 40px;
  border-radius: 40px;
  transition: 0.5s;
}

.content a:hover {
  background: #71412a;
}

.home .wrapper-login {
  position: relative;
  width: 440px;
}

.wrapper-login h2 {
  font-size: 2em;
  color: #fcdd8f;
  text-align: center;
}

.input-box {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 40px 0;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 1px solid #fcdd8f;
  outline: none;
  border-radius: 40px;
  font-size: 1em;
  color: #fcdd8f;
  padding: 0 25px 0 45px;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 45px;
  transform: translateY(-50%);
  font-size: 1em;
  color: #fcdd8f;
  pointer-events: none;
  transition: 0.5s;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
  font-size: 0.8em;
  top: -14px;
  left: 17px;
}

.input-box .icon {
  position: absolute;
  top: 14px;
  left: 15px;
  font-size: 1.2rem;
  color: #fcdd8f;
}

.wrapper-login .remember-forgot {
  font-size: 0.9em;
  color: #fcdd8f;
  font-weight: 500;
  margin: -25px 0 15px;
  display: flex;
  justify-content: space-between;
}

.remember-forgot label input {
  accent-color: #71412a;
  margin-right: 3px;
}

.remember-forgot a {
  color: #fcdd8f;
  text-decoration: none;
}

.remember-forgot a {
  text-decoration: underline;
}

.wrapper-login .btn {
  width: 100%;
  height: 50px;
  border: 2px solid #fcdd8f;
  outline: none;
  border-radius: 40px;
  /* background: linear-gradient(90deg, #1e0b04, #71412a); */
  cursor: pointer;
  font-size: 1em;
  color: #fcdd8f;
  font-weight: 500;
  padding: 10px 40px;
  background-color: transparent;
}

.wrapper-login .btn:hover {
  background: #71412a;
}

.wrapper-login .register-link {
  font-size: 0.9em;
  color: #fcdd8f;
  text-align: center;
  margin: 30px 0;
}

.register-link p a {
  color: #fcdd8f;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.register-link p a:hover {
  text-decoration: underline;
}
