:root {
  --primary: #0d47a1;
  --text-dark: #212121;
  --text-muted: #616161;
  --border: #bdbdbd;
}

* {
  box-sizing: border-box;
  font-family: "Roboto", Arial, sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  background: url("background.jpg") no-repeat center center / cover;
}

/* ===== Layout ===== */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  padding: 28px 26px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  text-align: center;
}

/* ===== Header ===== */
.logo {
  width: 120px;
  margin-bottom: 12px;
}

h1 {
  font-size: 22px;
  font-weight: 500;
  margin: 6px 0;
  color: var(--text-dark);
}

.subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.4;
}

/* ===== Form ===== */



/*page -header end*/
.form-group {
  text-align: left;
  margin-bottom: 18px;
}

label {
  font-size: 12px;
  color: var(--text-muted);
}

select,
input {
  width: 100%;
  padding: 8px 4px;
  font-size: 15px;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
}

select:focus,
input:focus {
  border-bottom: 2px solid var(--primary);
}

.input-icon {
  position: relative;
}

.input-icon span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #424242;
  font-size: 20px;
}

small {
  font-size: 11px;
  color: #757575;
}

/* ===== Button ===== */
.btn-primary {
  width: 100%;
  margin-top: 16px;
  padding: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary:hover {
  background: #093170;
}

/* ===== Links ===== */
.link,
.blink,
.footer {
  font-size: 13px;
  margin-top: 12px;
}

a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer {
  font-size: 12px;
  color: #757575;
}

/* ===== Animations ===== */
.blink {
  animation: blink 2s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ===== Notification Bell ===== */
.notify-icon {
  position: fixed;
  top: 255px;
  right: 0px;
  width: 52px;
  height: 48px;
  background: #0d47a1;
  border-radius: 14px 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
 z-index: 999;
}

/* FORCE ICON TO BE WHITE */
.notify-icon .material-icons {
  color: #ffffff !important;
  font-size: 25px;
}



/* Bell ring animation (subtle) */
.ring {
  animation: ring 2.5s infinite;
}

@keyframes ring {
  0% { transform: rotate(0); }
  2% { transform: rotate(15deg); }
  4% { transform: rotate(-15deg); }
  6% { transform: rotate(10deg); }
  8% { transform: rotate(-10deg); }
  10% { transform: rotate(0); }
  100% { transform: rotate(0); }
}


/* ===== Help Icon ===== */
.help-icon {
  position: fixed;
  bottom: 26px;
  right: 20px;
  width: 56px;
  height: 56px;
  z-index: 10;
}

.help-icon img {
  width: 100%;
  height: 100%;
}

/* Gentle float (realistic) */
.float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* Pulse */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(13,71,161,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(13,71,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,71,161,0); }
}

/* Float */
.float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  50% { transform: translateY(-6px); }
}

/* ===== Mobile Tweaks ===== */
@media (max-width: 480px) {
  .card {
    
	padding:22px 20px;
	
  }

  h1 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .notify-icon {
    
    
    width: 52px;
    height: 48px;
  }

  .notify-icon img {
    width: 18px;
    height: 18px;
  }

  .help-icon {
    width: 48px;
    height: 48px;
    bottom: 18px;
    right: 12px;
  }
}
