html, body {
  height: 100%;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fff;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
}

.login-container {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #eee;

  margin-top: auto;
  margin-bottom: auto;
}

.logo {
  margin-bottom: 20px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 15px;
  margin-bottom: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.forgot-password {
  display: block;
  text-align: left;
  margin-bottom: 20px;
  font-size: 14px;
  color: #0070ba;
  text-decoration: none;
}

button.login-btn {
  background-color: #0544b5;
  color: white;
  border: none;
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  width: 100%;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

button.login-btn:hover {
  background-color: #0070ba;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.divider:not(:empty)::before {
  margin-right: 10px;
}

.divider:not(:empty)::after {
  margin-left: 10px;
}

button.signup-btn {
  background: white;
  border: 1px solid #000;
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  width: 100%;
  cursor: pointer;
}

.language-selector {
  margin-top: 30px;
  font-size: 14px;
}

.language-selector img {
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

footer {
  font-size: 13px;
  color: #666;
  text-align: center;
  padding: 30px 10px 10px;
}

footer a {
  margin: 0 10px;
  color: #0070ba;
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  body {
    font-size: 36px;
  }

  .login-container {
    padding: 100px 40px;
    border-radius: 40px;
  }

  input[type="text"],
  input[type="password"] {
    padding: 36px;
    font-size: 32px;
  }

  .forgot-password {
    font-size: 32px;
  }

  button.login-btn,
  button.signup-btn {
    padding: 36px 0;
    font-size: 36px;
  }

  .logo {
    width: 100%;
    max-width: 560px;
  }

  .divider {
    font-size: 32px;
  }

  .language-selector {
    font-size: 32px;
  }

  .language-selector img {
    width: 48px;
  }

  footer {
    font-size: 30px;
  }
}
