* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }

  .container {
    max-width: 400px;
    padding: 40px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  h2 {
    margin-bottom: 30px;
    color: #695cfe;
  }

  .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
  }

  .btn1 {
    width: 100%;
    padding: 10px;
    background-color: #695cfe;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }

  .btn1:hover {
    background-color: #563fd3;
  }

  .forgot-password-form {
    display: none;
  }

  .show-forgot-password,
  .show-login {
    text-decoration: underline;
    color: #999;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
  }

  .show-forgot-password:hover,
  .show-login:hover {
    color: #555;
  }

  .logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
  }

  .sidebar.close .text.nav-text {
    display: none;
  }

  .expiredPopup {
    background-color: red;
    border: 1px solid darkred;
    padding: 1vw;
    padding-top: .5vw;
    display: none;
    border-radius: 1vw;
}