* {
 box-sizing: border-box;>
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #168def, #ACB6E5);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* بدلًا من height فقط */
}

.login-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 90%;           /* جعلها تعتمد على عرض الشاشة */
  
  height: 80%;
  
}

.logo {
  width: 100%;
  text-align: center;
}

.sfsp-logo {
  width: 150px;
  height: 150px;
}

.login-box h2 {
  text-align: center;
  color: #ffffff;
  padding-bottom: 25px;
}

.input-box {
  margin-bottom: 20px;
}

.input-box input {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  background: #ffffffdd;
  font-size: 16px;
}

.forgot {
  text-align: right;
  font-size: 14px;
  margin-bottom: 20px;
}

.forgot a {
  color: #fff;
  text-decoration: none;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.login-btn:hover {
  background-color: #0056b3;
}
.signup {
  margin-top: 15px;
  text-align: center;
}
.signup a {
  color: #ffffff;
  text-decoration: underline;
}


@media screen and (max-device-width: 1024px) {
    
   .login-box {
    height: 1000px;         
  }
  
  .input-box input {
    height: 70px;
    font-size: 30px !important;
  }
  
  .login-btn {
      height: 70px;
    font-size: 30px !important;
  }
  
  a {
    font-size: 24px;
}

p {
    font-size: 24px;
}
  
 
  
  .logo {
    padding-top: 50px;
  }

  .sfsp-logo {
    width: 250px;
    height: 250px;
  }

  .login-box h2 {
    font-size: 50px;
  }

  .input-box input {
    font-size: 15px;
    padding: 10px;
  }

  .login-btn {
    font-size: 15px;
    padding: 10px;
  }

  .forgot,
  .signup {
    font-size: 13px;
  }
}
