@charset "utf-8";

/* General body styles */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('bulkbg2.webp') no-repeat center center fixed; /* Update with the actual URL of the new AI background image */
  background-size: cover;
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.container {
  background: rgba(19, 21, 23, 0.9); /* Semi-transparent black for contrast with background */
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #56ccf2; /* Bright blue border matching the button */
  box-shadow: 0 12px 24px rgba(0,0,0,0.4); /* Shadow for depth */
  width: 90%;
  max-width: 500px; /* Ideal for both mobile and desktop views */
}

/* Header styles */
h1 {
  color: #56ccf2; /* Bright and inviting blue */
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: normal; /* Keeping the text weight normal for a sleek look */
}

/* Styling for form elements */
input[type="text"], input[type="password"], textarea {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  display: inline-block;
  border: 2px solid #2c3e50; /* Subtle border for input fields */
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #fff;
  color: #333;
  transition: border-color 0.3s ease-in-out;
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
  border-color: #56ccf2; /* Highlight focus with the theme color */
  box-shadow: 0 0 8px rgba(86, 204, 242, 0.8); /* Soft glow on focus */
}

input[type="submit"] {
  width: 100%;
  background-color: #56ccf2;
  color: white;
  padding: 16px 20px;
  margin: 20px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s ease-out;
}

input[type="submit"]:hover {
  background-color: #3ea8d8; /* Darker blue on hover */
  transform: translateY(-2px); /* Slight lift effect on hover */
}
