
        * {
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    
 /* color: #fff; */
}

html, body {
  height: 100%;
}
main {            /* your page content wrapper */
    flex: 1;
  width: 100%;
  padding: 40px 16px;   /* top/bottom space + small side padding */
  display: flex;
  justify-content: center;
  align-items: center;        /* pushes footer down when content is short */
}
  :root{
    --bg1:#005900;
    --bg2:#9FCF02;

    --text:#ffffff;
    --muted:#005900;

    --card:#ffffff;
    --card2:#f6faf6;
    --border: rgba(16,34,20,.10);

    --shadow1: 0 24px 60px rgba(0,0,0,.22);
    --shadow2: 0 8px 18px rgba(0,0,0,.10);

    --radius: 16px;
    --focus: rgba(0,89,0,.22);
  }

  /* BODY ------------------------------------------- */
  body{
    margin:0;
    font-family:"Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  display: flex;
    flex-direction: column;
    align-items: center; 
    color: var(--text);
    overflow-x:hidden;
    background: radial-gradient(1000px 600px at 50% 25%, rgba(255,255,255,.10), rgba(255,255,255,0) 55%),
                linear-gradient(165deg, var(--bg1) 0%, var(--bg2) 100%);
  }
body::before {
      content: "";
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: -1;
      background: linear-gradient(165deg, #005900 0%, #9FCF02 100%);

    }

/* CONTAINERS SECTION ------------------------------------------- */
  .logo{
  height: 350px;
  width: auto;
  vertical-align: middle;
  margin-right: 10px;
}
.hero{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 28px;
}
.card{
  width:100%;
  border-radius: var(--radius);

  /* Glass effect */
  background: rgba(255, 255, 255, 0.1);   /* transparent */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow1), var(--shadow2);
  padding: 22px 24px 18px;
}
    .container{
    position:relative;
    z-index:1;
    width:100%;
     max-width: 900px;  
    display:flex;
   justify-content:center;
  align-items:center;
    gap: 14px; 
  }
@media (max-width: 820px){
  .hero{
    flex-direction: column;
    gap: 14px;
  }

  .logo{
    height: 350px;           /* optional: reduce on mobile */
  }

  .card{
    width: 100%;
    max-width: 420px;
  }
}

    header {
      color: var(--text);
      padding: 40px 20px;
      text-align: center;
      
    }

    header h1 {
      /* Bold font */
     font-weight: bold;
      margin: 0;
      font-size: 2.5em;
    }




   
/* INPUT ------------------------------------------- */
  input[type="email"],
  input[type="password"],

  input[type="text"]{
    width:100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(16,34,20,.14);
    background: #fff;
    outline: none;
    transition: box-shadow .15s ease, border-color .15s ease, transform .05s ease;
  }

  input:focus{
    border-color: rgba(0,89,0,.45);
    box-shadow: 0 0 0 4px var(--focus);
  }
  
/* LINKS ------------------------------------------- */
    .links{
    margin-top: 14px;
    text-align:center;
    font-size: .92rem;
  }

  .links a{
      color: var(--text);
    text-decoration: none;
  }

  .links a:hover{
    color: var(--muted);
    text-decoration: underline;
  }
  
/* BUTTONS ------------------------------------------- */
    button{
    width:100%;
    margin-top: 14px;
    padding: 11px 14px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: .2px;
    color: #fff;
    background: linear-gradient(90deg, #005900, #0a7a12);  
    box-shadow: 0 4px 14px rgba(0,0,0,.20);
    transition: transform .06s ease, box-shadow .15s ease, filter .15s ease;
  }

button:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.30);
}

  button:active{ transform: translateY(1px); }

  button:disabled{
    opacity: .65;
    cursor: not-allowed;
    box-shadow: none;
  }

/* ALERT ------------------------------------------- */
  .alert{
    display:none;
    margin-top: 12px;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid rgba(160,0,0,.20);
    background: rgba(255,235,235,.85);
    color: #7a0b0b;
    font-size: .95rem;
    line-height: 1.35;
    white-space: pre-line;
  }
  
/* TITLE BLOCK ------------------------------------------- */
.titleBlock {
  width: fit-content;   /* makes div shrink to its content */
  margin: 0 auto 6px;   /* centers horizontally + keeps bottom margin */
  text-align: left;     /* keeps text inside aligned left */
}

  .titleBlock h1{
    margin:0;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: .2px;
    color: var(--text);
  }

  .titleBlock p{
    margin: 2px 0 0;
    font-size: .95rem;
    color: var(--muted);
  }

/* DIVIDER ------------------------------------------- */
  .divider{
    height: 1px;
    background: rgba(255,255,255, 0.5);
    margin: 14px 0 16px;
  }

/* FIELD ------------------------------------------- */
    .field{
    margin: 12px 0;
    text-align:left;
  }

  .field label{
    display:block;
    margin: 0 0 6px;
    font-size: .9rem;
    margin-left: 10px;
     font-weight: bold;
    color: var(--text); 
  }

/* WAVES ------------------------------------------- */
   .wave {
			background: rgb(255 255 255 / 25%);
			border-radius: 1000% 1000% 0 0;
			position: fixed;
			width: 200%;
			height: 12em;
			animation: wave 10s -3s linear infinite;
			transform: translate3d(0, 0, 0);
			opacity: 0.8;
			bottom: 0;
			left: 0;
			z-index: -1;
		}

		.wave:nth-of-type(2) {
			bottom: -1.25em;
			animation: wave 18s linear reverse infinite;
			opacity: 0.8;
		}

		.wave:nth-of-type(3) {
			bottom: -2.5em;
			animation: wave 20s -1s reverse infinite;
			opacity: 0.9;
		}

		@keyframes wave {
			2% {
				transform: translateX(1);
			}

			25% {
				transform: translateX(-25%);
			}

			50% {
				transform: translateX(-50%);
			}

			75% {
				transform: translateX(-25%);
			}

			100% {
				transform: translateX(1);
			}
		}

/* RIPPLE ------------------------------------------- */
     .ripple {
      position: absolute;
      width: 100px;
      height: 100px;
      margin-left: -50px;
      margin-top: -50px;
      border-radius: 50%;
      transform: scale(0);
      animation: ripple 0.6s linear;
      background-color: rgba(255, 255, 255, 0.6);
      pointer-events: none;
    }

    @keyframes ripple {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }
/* FOOTER ------------------------------------------- */
    footer {
  text-align: center;
  width: 100%;
  padding: 12px 12px;
  background: rgb(0 0 0 / 0.7);
  font-size: 14px;
  color: var(--text);
  height: 50px;
  position: static; /* or just remove position entirely */
}
    
