/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Form Container Styling */
.form-container {
    background: #ffffff;
   
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 600px;
}
/* title Styling */
.title {
    background: #0056b3;
    padding: 20px;
 }
/* Form Title */
h1 {
    margin-bottom: 20px;
    color: #333333;
    font-size: 22px;
    text-align: center;
}

/* Input Field Styling */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #007bff;
    outline: none;
}

/* Button Styling */
button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

/* Error and Success Messages */
p {
    text-align: center;    
    font-size: 14px;
}

p.error {
    color: #ff4444;
}

p.success {
    color: #28a745;
}
/* General styling for the form */
form {
  margin: 20px;
}

/* Styling for labels */
label {
  font-weight: bold;
  color: #333;
}

/* Styling for select elements */
select {
  width: 200px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: #555;
}

/* Add some margin between form fields */
select, label {
  margin-bottom: 15px;
}

/* Styling for hover and focus */
select:hover {
  border-color: #007BFF;
}

select:focus {
  outline: none;
  box-shadow: 0 0 5px #007BFF;
  border-color: #007BFF;
}
