* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: white;
}

.container {
  padding: 2rem;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.container img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 1.5rem;
}

.container h2 {
  font-size: 1.5rem;
  text-align: left;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.container h3 {
  text-align: left;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.container p {
  text-align: center;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.input-group {
  margin-bottom: 1rem;
  position: relative;
  text-align: left;
}

.input-group input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  outline: none;
}

.input-group i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.input-group .fa-user,
.input-group .fa-lock,
.input-group .fa-phone {
  left: 0.75rem;
}

.input-group .toggle-password {
  right: 0.75rem;
  cursor: pointer;
  padding: 0.3rem;
  font-size: 1rem;
}

.toggle-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.toggle-group label {
  font-size: 0.9rem;
  color: #4b5563;
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 20px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #fe522a;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.btn {
  width: 100%;
  background-color: #fe522a;
  color: white;
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.btn:hover {
  background-color: rgb(123, 40, 21);
}

.text-center {
  text-align: center;
  color: #4b5563;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.text-center a {
  color: #fe522a;
  text-decoration: none;
  font-weight: bold;
}
