.custom-inner-div {

  display: flex;
  justify-content: center;
  align-items: center;
}
.forgot-password-container {
  color: #686868;
font-size: 16px;
font-family: inter, AvertaStd-Regular;
font-weight: 400;
line-height: 20px;
word-wrap: break-word
}

.click-here-link {
    text-decoration: none;
    cursor: pointer;
    margin-left: 5px; /* Adds spacing between the text and the link */
}
.click-here-link:hover {
    text-decoration: underline; /* Underlines the link when hovered */
}
.login-container-heading
{
  color: black;
font-size: 18px;
font-family: inter, AvertaStd-Regular;
font-weight: 400;
line-height: 20px;
word-wrap: break-word
}
.login-container-input-text
{
  color: black;
font-size: 16px;
font-family: inter, AvertaStd-Regular;
font-weight: 400;
}
.login-container-button
{
  color: white;
font-size: 16px;
font-family:inter, AvertaStd-Regular;
font-weight: 400;
line-height: 20px;
word-wrap: break-word
}
/* Mobile screen styling */
@media (max-width: 768px) {
  .custom-inner-div {
    width: 100% !important;
    height: 100vh !important;
}
  .login-container-heading {
    font-size: 16px !important;
  }

  .login-container-input-text {
    font-size: 14px !important;
  }
  .content {
    all: unset; /* Removes all styles applied to the class */
}
}