.loginbody {
    background-color: snow;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    margin-top: 120px;
  }
  .login-box {
    width: 200px;
    background-color: #33a8ff;
    text-align: center;
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center; 
    height: 400px;
    color: white;
    padding:10px;
    border-radius: 5px;
  }
  .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
  }
  
  .login-card {
    width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .login-title {
    color: #007BFF;
    margin-bottom: 20px;
  }
  .underline-text {
    display: inline-block;
    border-bottom: 2px solid black; 
    padding-bottom: 2px; 
}

  .loginform {
    display: flex;
    flex-direction: column;
  }
  
  .login-label {
    text-align: left;
    margin-bottom: 5px;
  }
  
  .login-input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .login-btn {
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .login-btn:hover{
    background-color: #33a8ff;
  }
  .login-forget {
    margin-top: 15px;
    font-size: 14px;
  }
  
  .forget {
    color: #007BFF;
    text-decoration: none;
  }
