/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Body styling */
body {
  background: #f5f9f9;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
body::-webkit-scrollbar{
        display: none;
    }

/* Header */
header {
  width: 100%;
  background: #008080; /* UniRent teal */
  padding: 1rem;
  text-align: left;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  position: fixed;
}

/* Form container */
form {
  background: #fff;
  margin-top: 5rem;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 450px;
}

/* Form heading */
form h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #008080;
}

form .error p {
   color: red;
   text-align: center;
}
/* Labels */
label {
  display: block;
  margin: 0.5rem 0 0.2rem;
  font-weight: 600;
}

/* Inputs and select */
input, select {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}

input:focus, select:focus {
  border-color: #008080;
  outline: none;
}

/* Button */
button {
  width: 100%;
  padding: 0.8rem;
  background: #008080;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #006666;
}
form p{
    margin-top: 7px;
    color: #008080;
    text-align: center;
}
form p a {
      color: purple;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  form {
    padding: 1.5rem;
    margin-top: 5rem;
  }

  header {
    font-size: 1.2rem;
    padding: 0.8rem;
  }
}
