body {
  background-color: #0A1221;
  color: white;
  font-family: Verdana;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Takes up 100% of the screen height */
  margin: 0;
}

/* 2. STYLE THE CONTAINER BOX */
.login-container {
    text-align: center; /* Centers the text inside the container */
    background-color: #112341; /* Slightly lighter blue to pop out */
    padding: 30px;
    border-radius: 10px; /* Rounds the corners of the box */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Adds a subtle dark glow */
}

/* 3. FIX THE INPUT ALIGNMENT */
.form-group {
    margin-bottom: 15px; /* Spacing between username and password rows */
    display: flex;
    justify-content: space-between; /* Keeps labels and inputs aligned */
    align-items: center;
    gap: 10px;
}

/* 4. MODIFY THE INPUT BOXES (Username/Password fields) */
input {
    padding: 8px 12px;
    border: 2px solid #325C8C; /* Gives it a stormy blue border */
    border-radius: 5px;
    background-color: #0A1221; /* Dark background inside the input */
    color: white; /* Typed text will be white */
    font-family: Verdana, sans-serif;
}

/* Change input border color when you click into it */
input:focus {
    outline: none;
    border-color: #5185BA; /* Foggy azure highlight */
}

/* 5. MODIFY THE SUBMIT BUTTON */
button {
    background-color: #1C3E69; /* Mystic Indigo */
    color: white;
    border: none;
    padding: 10px 20px;
    font-family: Verdana, sans-serif;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer; /* Makes your mouse change to a hand icon on hover */
    transition: background 0.2s ease; /* Smooth color change */
    width: 100%; /* Makes button stretch across the form width */
}

/* Make the button change color when you hover over it */
button:hover {
    background-color: #325C8C; /* Stormy Hues blue */
}