.login-container {
  background: #f1f5f9;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 16px;
}

.login-container .wrapper {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 4px;
  padding: 36px 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: solid 2px #ddd;
}

.login-container .content {
  width: 100%;
}

.login-container .toggleTabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.login-container .toggleTabs button {
  flex: 1;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-container .toggleTabs button.activeTab {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.login-container .toggleTabs button:not(:last-child) {
  margin-right: 12px;
}

.login-container .toggleTabs button:hover {
  background: #e0e7ff;
}

.login-container .text {
  text-align: center;
  margin-bottom: 24px;
}

.login-container .text h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
}

.login-container .text p {
  font-size: 15px;
  color: #475569;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.6;
}

.login-container .text p span {
  color: #ef6c00;
  font-weight: 600;
}

.login-container .formbox form .box {
  margin-bottom: 18px;
  position: relative;
}

.login-container .formbox form .box label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.login-container .formbox form .box input {
  width: 100%;
  padding: 12px;
  padding-right: 40px;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
  background: #f9fafb;
  font-size: 15px;
  color: #1e293b;
  transition: border-color 0.2s ease;
}

.login-container .formbox form .box input:focus {
  border-color: #2563eb;
  background: #ffffff;
  outline: none;
}

.login-container .formbox form .box .togglePassword {
  position: absolute;
  top: 60%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #94a3b8;
  cursor: pointer;
}

.login-container .formbox form .box .togglePassword:hover {
  color: #2563eb;
}

.login-container .formbox form .box span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #ef4444;
  font-weight: 500;
}

.login-container .formbox form button {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.login-container .formbox form button:hover {
  background-color: #1e40af;
}

.login-container .formbox form button:disabled {
  background: #94a3b8;
  cursor: not-allowed;
}

.login-container .bottom {
  text-align: center;
  margin-top: 24px;
}

.login-container .bottom a {
  font-size: 14px;
  color: #2563eb;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 10px;
}

.login-container .bottom a:hover {
  text-decoration: none;
}

.login-container .bottom h2 {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
}

.login-container .bottom h2 a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: underline;
}

.login-container .bottom h2 a:hover {
  text-decoration: none;
}

@media (max-width: 480px) {
  .login-container {
    padding: 24px 12px;
  }

  .login-container .text h1 {
    font-size: 24px;
  }

  .login-container .text p {
    font-size: 13px;
  }
}
