:root {
  --dark-green: #386954;
  --mint-green: #6aa98e;
  --light-gray: #ededed;
  --text-color: #666;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
}

a {
  color: var(--text-color);
  font-size: 14px;
  display: block;
}

.login-title {
  text-align: center;
}

#login-page {
  display: flex;
  min-height: 100vh;
}

.notice {
  font-size: 13px;
  text-align: center;
  color: var(--text-color);
}

.login {
  width: 30%;
  min-width: 320px;
  height: 100vh;
  background: #FFF;
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login a {
  margin-top: 25px;
  text-align: center;
}

.form-login {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}

.form-login label {
  text-align: left;
  font-size: 13px;
  margin-top: 10px;
  margin-left: 0;
  width: 100%;
  color: var(--text-color);
}

.input-email,
.input-password {
  width: 100%;
  background: var(--light-gray);
  border-radius: 25px;
  margin: 4px 0 10px;
  padding: 10px;
  display: flex;
}

.icon {
  padding: 4px;
  color: var(--text-color);
  min-width: 30px;
  text-align: center;
}

input[type="email"], input[type="text"],
input[type="password"] {
  width: 100%;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 4px 0;
  outline: none;
}

button[type="submit"] {
  width: 100%;
  border: 0;
  border-radius: 25px;
  padding: 14px;
  background: var(--dark-green);
  color: #FFF;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  transition: opacity 0.3s ease;
}

button[type="submit"]:hover {
  opacity: 0.9;
}

.background {
  width: 70%;
  height: 100vh;
  background: url('../images/1.jpg') center no-repeat;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: row;
  padding: 40px;
}

.background h1 {
  max-width: 420px;
  color: #FFF;
  text-align: right;
  margin: 0;
}

.background p {
  max-width: 650px;
  color: var(--mint-green);
  font-size: 15px;
  text-align: right;
  margin: 15px 0 0;
}

.created {
  margin-top: 40px;
  text-align: center;
}

.created p {
  font-size: 13px;
  font-weight: bold;
  color: var(--mint-green);
}

.created a {
  color: var(--dark-green);
  font-weight: normal;
  text-decoration: none;
}

.checkbox label {
  display: inline;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  #login-page {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  .login {
    width: 100%;
    height: auto;
    padding: 40px 20px;
  }

  .background {
    display: none;
  }
}

@media (max-width: 480px) {
  .login {
    padding: 20px 15px;
  }

  .form-login label {
    font-size: 12px;
  }

  button[type="submit"] {
    padding: 12px;
    font-size: 14px;
  }
}
