/* body { */
    /* margin: 0; */
    /* font-family: 'Segoe UI', sans-serif; */
    /* background: linear-gradient(135deg, #15BBDE, #252860);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  } */
  
  .login-container {
    background: linear-gradient(180deg, #15BBDE, #252860);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 455px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
  }

  .img {
    display: flex;
    justify-content: center;
  }
  
  .logo {
    background: linear-gradient(135deg, #15BBDE, #252860);
    width: 150px;
    margin-bottom: 30px;
    padding: 10px;
  }
  
  h2 {
    font-size: 16px;
    padding-bottom: 20px;
    color: #333;
  }
  
  label {
    display: block;
    text-align: left;
    font-size: 14px;
    margin-left: 0.5rem;
    margin-bottom: 0.3rem;
  }
  
  .input-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .input-group span {
    padding: 0.5rem;
    background-color: #f0f0f0;
    border-right: 1px solid #ccc;
  }
  
  .input-group input {
    border: none;
    padding: 0.5rem;
    flex: 1;
    outline: none;
  }
  
  .checkbox-group {
    text-align: left;
    font-size: 12px;
    color: #444;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
    display: flex;
  }
  
  .checkbox-group input {
    margin-right: 5px;
  }
  
  .checkbox-group a {
    color: #1976d2;
    text-decoration: none;
  }
  
  .btn {
    background-color: #187CC1;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    color: white;
  }
  