
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700&display=swap');
body {
    background: #0d0d0d;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: 'Vazirmatn', sans-serif;

}
.login-box {
    background: #0d0d0d;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #00ffe1;
    box-shadow: 0 0px 10px 5px rgba(0, 255, 255, 0.2);
    width: 100%;
    max-width: 400px;
    animation: fadeIn 1s ease-in-out;
    text-align: right;
}

.img-logo{
    width: 80px;
    height: 80px;
}


.form-control {
    background-color: rgba(17, 17, 17, 0.85);
    border: 1px solid #00ffe1;
    color: #fff;
    border-radius: 12px;
    transition: box-shadow 0.3s;
    text-align: right;
    
  }
  .form-control::placeholder{
    color: #00ffe16b;
  }
  .form-control:focus::placeholder{
    color: #00000064;
  }
  .form-control:focus {
    box-shadow: 0 0 10px #00ffe1;
    border-color: #00ffe1;
  }

  .form-label{
    margin-right: 0px;
  }

h2{
    color: #00ffe1;
    font-weight: 700;
    font-size: 1.6rem;
    text-shadow: 0 0 10px #00ffe1;
    margin-top: 10px;
}


.sabt{
    color: #00ffe1;
    margin-top: 20px;
}
.btn{
   background:#00ffe127 ;
    border: 1px solid #00ffe1;
    text-shadow: 0 0 10px #00ffe1;
    transition: 0.9s;
    color: #00ffe1;

}
.btn:hover {
    background-color: #00ffe1;
  color: #000;
  box-shadow: 0 0 20px #00ffe1;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 576px) {
    .login-box {
        padding: 20px;
        width: 90%;
    }
    h2 {
        font-size: 1.5rem;
    }
    .btn-primary {
        font-size: 1rem;
        padding: 10px;
    }
}
