* {
  margin: 0;
  padding: 0;
  font-family: "Rajdhani";
}
body {
  background: #eee;
}
.content {
  position: Absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
}
.box {
  display: flex;
  flex-direction: column;
}
.box > .texts {
  text-align: center;
  margin-bottom: 15px;
}
h1 {
  margin-bottom: -5px;
}
h2 {
  font-size: 1.25rem;
  font-weight: 400;
}
.form {
  padding: 50px;
  border-radius: 30px;
  position: relative;
  background: #fff;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
input {
  border: 0.5px solid #ddd;
  width: 100%;
  height: 50px;
  font-size: 1.25rem;
  padding: 0 20px;
  box-sizing: border-box;
  outline: none;
  border-radius: 10px;
  transition: border-color 200ms;
}
input:focus {
  border-color: #0984e380;
}
.buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.text {
  border: none;
  background: none;
  font-size: 0.9rem;
  cursor: pointer;
  position: Relative;
  outline: none;
}
.text:before {
  content: "";
  position: absolute;
  top: 85%;
  right: 0;
  width: 0;
  height: 0.5px;
  background: #333;
  transition: 250ms all;
}
.text:hover::before {
  width: 100%;
  right: initial;
  left: 0;
}
.button {
  background: rgba(9, 132, 227, 0.9);
  border: none;
  padding: 15px 20px;
  font-size: 0.9rem;
  border-radius: 7.5px;
  color: #fff;
  cursor: pointer;
  transition: 250ms all;
  outline: none;
}
.button:hover {
  transform: scale(1.1);
}
.button:active {
  transform: scale(1);
}
.text-muted {
  color: rgba(0, 0, 0, 0.4);
  margin-top: 10px;
  font-size: 0.7rem;
  display: Flex;
  justify-content: center;
}
form {
  z-index: 1;
}
.alertisHere {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.alert {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 50px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
.alert-danger {
  background: #d63031;
  color: #fff;
}
.alert-primary {
  background: #48cae4;
  color: #fff;
}
.alert-info {
  background: #fb8500;
  color: #fff;
}
.alert-success {
  background: #2ed573;
  color: #fff;
}
.icon > ion-icon {
  font-size: 60px;
  margin-right: 15px;
}
.alert > .texts {
  display: Flex;
  flex-direction: column;
  text-align: left;
}
.alert > .texts > span {
  margin-bottom: 0;
}
.line {
  width: 0.2px;
  height: 500px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 100px;
}
