/* Background Watermark */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: url('logo.jpg') center center no-repeat;
    background-size: 600px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

/* Main Page Layout */
body {
    position: relative;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    z-index: 1;
}

/* Global Styles */
* {
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    font-style: normal;
}

/* Form Container */
form {
    position: relative;
    max-width: 1000px;
    width: 100%;
    border: 5px solid rgb(160, 235, 163);
    padding: 60px 20px 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Logo Animation */
@keyframes logoZoomFloat {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  60% {
    opacity: 1;
    transform: scale(1.25) translateY(5px);
  }
  100% {
    transform: scale(1.2) translateY(0);
  }
}

.form-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 80px;
  height: auto;
  border: 3px solid rgb(160, 235, 163);
  border-radius: 8px;
  padding: 4px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  animation: logoZoomFloat 0.8s ease-out forwards;
}

/* Form Header */
h1 {
    background: linear-gradient(to right, rgb(160, 235, 163), #fff);
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

hr {
    border: none;
    height: 0;
    border-top: 2px solid rgb(160, 235, 163);
    border-bottom: 2px solid #fff;
    margin: 30px 0;
}

/* Input Fields */
input[type="text"],
input[type="password"] {
    background-color: #fff;
    color: #000;
    border: 2px solid rgb(160, 235, 163);
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
}

/* Submit Button */
button[type="submit"] {
    background-color: rgb(160, 235, 163);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button[type="submit"]:hover {
    background-color: rgb(130, 205, 135); /* Slightly deeper mint on hover */
    transform: translateY(-2px);
}
