* {
  box-sizing: border-box;
}
body {
  background-color: #f5f6f7;
}
h2{
  color: #24479b;
  font-weight: 600;
}
.txtp-1{
  color: #3f3f3f;
  font-size: 1rem;
}
.txtp-2{
  color: #3f3f3f;
  text-align: center;
}
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}
.row {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
/* Create two equal columns that floats next to each other */
.column {
  margin-top: 5%;
  float: right;
  width: 70%;
  padding: 10px;
  height: 100%;
  /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.forgot-txt {
  color: #502379;
  font-size: 24px;
  font-weight: 600;
}
.forgot-msg {
  color: #502379;
  font-size: 14px;
}
.txtlablel {
  color: #502379;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

input[type="email"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border-radius: 7px;
  border: 1px solid #ddb8fe;
  background-color: #fafafa;
  box-sizing: border-box;
}

input[type="email"]:focus {
  background-color: #fff;
  outline: none;
  font-size: 24px;
}
input,
input::placeholder {
  font: 1rem sans-serif;
}
button {
  background-color: #24479b;
  border-radius: 7px;
  color: white;
  padding: 10px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
}

button:hover {
  opacity: 0.8;
}

.container {
  padding: 10px;
  background-color: #ffffff;
  border-radius: 7px;
  box-shadow: 5px 2px 8px 8px #f1f0f0;
}

/* Overwrite default styles of hr */


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 900px) {
  .row {
    width: 80%;
    margin: auto;
  }
  .imgclass {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .column {
    width: 90%;
  }
  h1 {
    font-size: 22px;
    text-align: center;
  }
}
@media screen and (max-width: 425px) {
  .row {
    width: 90%;
  }
  .column{
    width: 90%;
  }
}

