* {
  box-sizing: border-box;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
}

body {
  background-color: #fde6ff;
  margin: 0;
}

.content {
  max-width: 400px;
  width: 100%;
  margin: 50px auto 15px auto;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  padding: 25px;
}

.content h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 15px 0;
  color: #3b4252;
}

.content h1 .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #9196a5;
  margin-left: 5px;
  font-size: 14px;
}

.content h1 .icon svg {
  fill: #fff;
}

.content .login-txt {
  margin: 0;
  padding: 15px 0 25px 0;
  color: #3b4252;
}

.content .reset-error {
  margin: 0;
  font-size: x-small;
  color: red;
}

.content .facebook-login-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background-color: #3b5998;
  cursor: pointer;
}

.content .facebook-login-btn .icon {
  display: inline-flex;
  height: 100%;
  padding: 15px 20px;
  align-items: center;
  justify-content: center;
  background-color: #344e86;
  margin-right: 15px;
}

.content .facebook-login-btn .icon svg {
  fill: #fff;
}

.content .facebook-login-btn:hover {
  background-color: #385591;
}

.content .facebook-login-btn:hover .icon {
  background-color: #314a7e;
}

.content .profile-picture {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 25px 0;
}

.content .profile-picture img {
  width: 100%;
  max-width: 100px;
  border-radius: 50%;
}

.content .profile-details {
  display: flex;
  flex-flow: column;
  padding: 10px 0;
}

.content .profile-details>div {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f2f5;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.content .profile-details>div .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #9196a5;
  margin-right: 15px;
  font-size: 14px;
}

.content .profile-details>div .icon svg {
  fill: #fff;
}

.content .profile-details>div strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.content .profile-details>div:last-child {
  border-bottom: none;
}

.content .logout-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background-color: #3b5998;
  cursor: pointer;
}

.content .logout-btn .icon {
  display: inline-flex;
  height: 100%;
  padding: 15px 20px;
  align-items: center;
  justify-content: center;
  background-color: #344e86;
  margin-right: 15px;
}

.content .logout-btn .icon svg {
  fill: #fff;
}

.content .logout-btn:hover {
  background-color: #385591;
}

.content .logout-btn:hover .icon {
  background-color: #314a7e;
}

.content .app-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #751961;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background-color: #ff96ff;
  cursor: pointer;
  padding: 15px 20px;
}

.content .app-btn:hover {
  background-color: #ffa8ff;
}

.footerp {
  padding: 10px;
  position: absolute;
  bottom: 0;
}

.content .native-auth {
  border-radius: 5px;
  border-style: dashed;
  height: 100%;
  padding: 5px 10px;
  align-items: center;
  justify-content: center;
  background-color: #a9c4ff;
}
.content .native-auth .native-auth-field {
  display: inline-flex;
  height: 100%;
  padding: 5px 5px;
  align-items: center;
  justify-content: left;
}
.content .native-auth .native-auth-field span {
  width: 100px;
}
.content .native-auth .native-auth-field input {
  width: 60%;
  margin-left: 5px;
}
.content .native-auth .native-auth-field-button {
  display: inline-flex;
  height: 100%;
  padding: 5px 5px;
  align-items: center;
  justify-content: center;
}