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

body {
  background-color: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 380px;
}

.container h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
}

.form-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-box input[type="email"],
.form-box input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.password-wrapper {
  position: relative;
}

.show-btn {
  position: absolute;
  right: 10px;
  top: 32px;
  background: none;
  border: none;
  color: #0077b5;
  cursor: pointer;
  font-size: 14px;
}

.remember-me {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.remember-me input {
  margin-right: 8px;
}

.agreement-text {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.4;
}

.agreement-text a {
  color: #0077b5;
  text-decoration: none;
}

.agree-join-btn {
  width: 100%;
  padding: 12px;
  background-color: #0077b5;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 15px;
}

.agree-join-btn:hover {
  background-color: #005c8a;
}

.or-separator {
  text-align: center;
  margin: 15px 0;
  color: #999;
  position: relative;
}

.or-separator::before,
.or-separator::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: #ccc;
}

.or-separator::before {
  left: 0;
}

.or-separator::after {
  right: 0;
}

.google-btn,
.microsoft-btn {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.icon {
  margin-right: 8px;
}

.signin-text,
.company-page-text {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.signin-text a,
.company-page-text a {
  color: #0077b5;
  text-decoration: none;
}