/* Code by Fidex Developers - https://fidex.lk/ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body.crypto-body {
    /* background-color: #353535 !important; */
    font-family: 'Poppins', sans-serif;
    color: #f2f2f2;
    /* min-height: 100vh; */
    /* display: flex; */
    align-items: center;
    justify-content: center;
  }
  
  .crypto-login-wrapper {
    margin-top: 50px;
  }
  .crypto-register-wrapper, .crypto-login-wrapper {
    padding: 20px;
    max-width: 400px;
    width: 100%;
    min-height: 70vh;
  }
  
  .crypto-register-card, .crypto-login-card {
    background: #121212;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 255, 164, 0.2);
    text-align: center;
  }
  
  .crypto-title {
    font-size: 26px;
    margin-bottom: 25px;
    color: #00ffa4;
  }
  
  .crypto-form {
    display: flex;
    flex-direction: column;
    align-items: start;
    min-width: 100%;
  }
  
  .crypto-input {
    background: #1f1f1f;
    width: 100%;
    border: 1px solid #333;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #f2f2f2;
    outline: none;
    transition: border 0.3s;
  }
  
  .crypto-input:focus {
    border-color: #00ffa4;
  }
  
  .crypto-button {
    background: #00ffa4;
    width: 100%;
    color: #0d0d0d;
    padding: 14px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
  }
  
  .crypto-button:hover {
    background: #00cc86;
  }
  
  .crypto-footer-text {
    text-align: center;
    display: block;
    align-self: center;
    font-size: 13px;
    margin-top: 20px;
    color: #aaa;
  }
  
  .crypto-footer-text a {
    color: #00ffa4;
    text-decoration: none;
  }
  
  .crypto-footer-text a:hover {
    text-decoration: underline;
  }
  
  .crypto-password-group {
    position: relative;
    width: 100%;
  }
  
  .crypto-toggle-password {
    position: absolute;
    right: 14px;
    top: 35%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    user-select: none;
  }
  
  .alert {
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .alert-danger {
    background: #ff5c5c;
    color: #fff;
  }

  .alert-warning {
    background: #e35d04;
    color: #fff;
  }
  
  .alert-info {
    background: #00ffa4;
    color: #0d0d0d;
  }
  