* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

.header {
  height: 73px;
  bottom: 1px;
  background-color: #ffffff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0px 40px;
  background-color: #fff;
}

.navbar .logo {
  margin-top: 17px;
}

.menu {
  max-width: 100%;
  margin-top: 17px;
  margin-left: 16px;
  gap: 16px;
  display: flex;
}

.input-search {
  border: 1px solid #66666659;
  border-radius: 16px;
  align-items: center;
  padding: 6px 10px;
  max-width: 99px;
  display: flex;
  background: #f6f6f6;
  max-height: 34px;
}

.input-search input {
  width: -webkit-fill-available;
  border: none;
  max-width: 43px;
  font-size: 12px;
  background-color: transparent;
}

.lang {
  max-width: 214px;
  display: flex;
}

select {
  border: none;
}

.btn-login {
  width: 100px;
  color: #f6f6f6;
  border: 1px solid #111111;
  border-radius: 8px;
  background-color: #111111;
  padding: 8px 25px;
}

.container {
  display: flex;
  top: 73px;
  background-color: #1f1f1f;
  gap: 48px;
}

.title h1 {
  font-size: 48px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
}

.content .subtitle {
  font-weight: 400;
  font-size: 32px;
  color: #ffffffcc;
  margin-bottom: 24px;
  text-align: left;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  min-width: 500px;
  max-width: 500px;
  margin: 0 auto;
}

.sub {
  text-align: center;
  width: 100%;
}

.title h1 {
  font-weight: 600;
  font-size: 48px;
  margin-bottom: 12px;
  text-align: left;
}

.meta {
  border-radius: 24px;
  border: none;
  box-shadow: rgba(102, 102, 102, 0.5);
  padding: 48px 40px 40px;
  background: #fff;
  max-width: 690px;
  width: 100%;
  margin: 32px;
}

.meta .title .signup-title {
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 24px;
  letter-spacing: 0%;
  line-height: 100%;
}

.form {
  margin-bottom: 24px;
}

.form .input {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.name {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.firstname,
.lastname {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.firstname label,
.lastname label {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 400;
  color: #666666;
  line-height: 100%;
  min-height: 22px;
  letter-spacing: 0%;
  display: block;
}

.firstname input,
.lastname input {
  max-width: 293px;
  width: 100%;
  height: 56px;
  padding: 13px 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
}

.email {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.email label {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 400;
  color: #666666;
  letter-spacing: 0%;
  line-height: 100%;
}

.email input {
  max-width: 100%;
  height: 56px;
  width: 100%;
  padding: 16px 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
}

.phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.phone-label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
  color: #666666;
  letter-spacing: 0%;
  line-height: 100%;
}

.phone-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 16px 13px;
  background: #fff;
}

.phone-row .flag {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-row select {
  font-weight: 400;
  border: none;
  background: transparent;
  font-size: 16px;
  outline: none;
}

.phone-row input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
}

.password {
  position: relative;
}

.password label {
  display: block;
  margin-bottom: 4px;
  padding-right: 110px;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}

.password > img {
  display: none;
}

.password .toggle-eye {
  position: absolute;
  top: 6px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.password .toggle-eye img {
  width: 24px;
  height: 24px;
  top: 3px;
  display: block;
}

.password .toggle-text {
  font-size: 18px;
  color: rgba(102, 102, 102, 0.8);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
}

.password input {
  width: 100%;
  height: 56px;
  padding: 12px 16px;
  margin-top: 6px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  outline: none;
}

.password .two {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #6b7280;
  margin-top: 10px;
}

.policy .check {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.policy-link {
  color: #111;
  text-decoration: underline;
  font-weight: 500;
  margin: 0 2px;
  display: inline;
  vertical-align: baseline;
}

.policy .check .item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.policy .check input {
  margin-top: 4px;
}

.pragh-1 .pragh-2 {
  font-weight: 400;
  font-size: 16px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
}

.btn button {
  border: none;
  height: 64px;
  display: flex;
  border-radius: 32px;
  padding: 16px 40px;
  font-size: 22px;
  background-color: #111111;
  color: #f6f6f6;
  opacity: 25%;
  cursor: pointer;
}

.btn .three {
  font-size: 16px;
  color: rgba(102, 102, 102, 1);
  margin-top: 4px;
}
