/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f7fb;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Main form wrapper */
.formWrapper {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

/* Logo space */
.formWrapper::before {
  content: "";
  display: block;
  margin-bottom: 20px;
  height: 50px;
  width: 50px;
  background-image: url('path_to_your_logo.png'); /* Add logo path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Heading style */
h1 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

/* Input fields */
.inputblock {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
  outline: none;
  transition: border-color 0.3s;
}

input:focus {
  border-color: #3498db;
}

/* Error container */
#errorcontainer {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Button style */
.btn {
  background-color: #3498db;
  color: white;
  font-size: 1rem;
  padding: 12px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #2980b9;
}

.btn:active {
  background-color: #1f6f8d;
}

/* Links */
a {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #2980b9;
}

/* Responsive styles */
@media (max-width: 480px) {
  .formWrapper {
    padding: 20px;
    max-width: 90%;
  }

  h1 {
    font-size: 1.5rem;
  }
}
