body {
  background-image: url('image/background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #f1f1f1;
    justify-content: center;
    height: 100vh;
}

header {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; /* Set the text color to white */
  margin-bottom: 20px; /* Add a bottom margin of 20px */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    max-width: 500px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

form {
      max-width: 400px;
      margin: 0 auto;
      background-color: rgba(255, 255, 255, 0.5);
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }


label {
    display: block;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

input[type="submit"] {
    width: 100%;
    padding: 8px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}
