* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
    outline: 0;
  }
  a {
    color: inherit;
    text-decoration: inherit;
  }
  
  body {
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }
  
  .login-card {
    background: #fff;
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    position:relative;
  }
  
  .login-card h1 {
    font-size: 24px;
    /* margin-bottom: 15px; */
    color: #333;
  }
  
  .login-logo {
    width: 200px;
    height: 60px;
    margin: 10px auto 45px auto;
  }
  
  .input-group {
    text-align: left;
    margin-bottom: 30px;
  }
  
  .input-group label {
    display: block;
    font-size: 14px;
    color: #000;
    margin-bottom: 2px;
    font-weight:600;
  }
  
  .input-group input {
    width: 100%;
  padding: 15px 10px 3px 10px;
    border: 0px solid #ddd;
    border-bottom: 2px solid #ddd;
    font-size: 14px;
    color: #666;
  }
  
  .password-wrapper {
    position: relative;
  }
  
  .password-wrapper input {
    padding-right: 40px;
    color: #666;
  }
  
  .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
  }
  
  .btn-login {
    width:200px;
    border-radius: 9999px;
    background-color: #162F58;
    border-width: 0px;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    margin-top: 30px;
    margin-bottom: 30px;
}
  
  .btn-login:hover {
    opacity: 0.9;
  }
  
  
  .support-text {
    margin-top: 15px;
    font-size: 14px;
    color: #999;
  }
  .support-contact {
    display:flex;
    margin-top:10px;
    line-height:1em;
    align-items: center;
    justify-content: center;
  }
  .support-contact:first-of-type {
    margin-top:15px;
  }
  .support-contact img {
    width:14px;
    height:14px;
  }
  .support-contact span {
    margin-left:5px;
  }
  

.copy {
    margin-top:60px;
    font-size: .8em;
    color:#aaa;
    margin-bottom:-60px;
}