/* تم مسح المشروع السابق */
/* DHL Landing & Login Styles */
* {
  box-sizing: border-box;
}
body {
  font-family: 'Tajawal', sans-serif;
}
input:focus {
  outline: none;
  border-color: #D40511;
  box-shadow: 0 0 0 3px rgba(212,5,17,0.1);
}
.btn-dhl-red {
  background-color: #D40511;
  color: white;
  transition: all 0.3s;
}
.btn-dhl-red:hover {
  background-color: #B3040E;
  transform: scale(1.02);
}
.loading-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loading-box {
  background: white;
  border-radius: 20px;
  padding: 3rem 4rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #D40511;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}