.login {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-form {
  width: 500px;
  max-width: 100%;
}

.form-text-input {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .login-form {
    width: 100%;
  }
}

.or-line {
  flex: 1;
  height: 1px;
  background-color: var(--black-color04);
}

.signin-google-btn {
  display: flex;
  gap: 8px;
  padding: 10px;
  background-color: white;
  border: 1px solid var(--neutral-400);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
