html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;}
body {
	line-height: 1;}
ol, ul {
	list-style: none;}
blockquote, q {
	quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;}
table {border-collapse: collapse;
	border-spacing: 0;}
/*separation of reset*/




body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #1d2b3a;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .container {
      background: rgba(0, 0, 0, 0.6);
      padding: 40px;
      width: 400px;
      border-radius: 6px;
      position: relative;
    }

    .login-link {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 14px;
    }

    .login-link a {
      border: 1px solid white;
      padding: 5px 15px;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
      pointer-events: none; /* Disable link */
    }

    h2 {
      font-size: 32px;
      margin-bottom: 30px;
    }

   input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.092);
  border: none;
  border-bottom: 1px solid white;
  color: white;
  transition: transform 0.2s ease; /* Smooth scaling */
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover {
  transform: scale(1.05);
  z-index: 1; /* Optional: to make sure it appears above other elements */
}

    .password-group {
      display: flex;
      gap: 10px;
    }

    .password-group input {
      flex: 1;
    }

  .submit-btn {
  width: 100%;
  padding: 15px;
  background: #387827;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  transition: transform 0.2s ease; /* Smooth scaling */
}

.submit-btn:hover {
  transform: scale(1.1);
  z-index: 1;
}



