/* Fonts Identify */
@font-face {
  font-family: 'IranSans';
  src: url('../../Fonts/IRANSans_0.ttf') format('truetype'),
}

/* All-Style */
* {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: 'IranSans';
}

body {
  font-family: 'Tahoma', sans-serif;
  background: linear-gradient(to left, #e8f5e9, #c8e6c9);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
} 
.login-wrapper {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 400px;
}
.login-form h2 {
  text-align: center;
  color: #102a43;
  margin-bottom: 30px;
  font-size: 1.3rem;
}
.Login_img{
  width: 120px;
}
.Login_Image_Wrapper{
  text-align: center;
}
.login{
width: 50px;
}
.input-box {
  position: relative;
  margin-bottom: 20px;
}
.input-box i {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: #4caf50;
  font-size: 1.2rem;
}
.input-box input {
  width: 100%;
  padding: 12px 44px 12px 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: .9rem;
  transition: border-color 0.3s ease;
}
.input-box input:focus {
  border-color: #4caf50;
  outline: none;
}
.login-btn {
  width: 100%;
  background-color: #4caf50;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}
.login-btn:hover {
  background-color: #388e3c;
}
.error {
  width: 100%;
  color: red;
  font-size: .9rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  text-align: center;
}

/* Mobile */
@media (max-width: 440px) {
  .login-wrapper {
    margin: 20px;
  }
}