input[type="text"],
input[type="password"] {
  width: 320px;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 6px rgba(79, 70, 229, 0.3);
  outline: none;
}

input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #4f46e5;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

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

input[type="submit"]:active {
  transform: scale(0.98);
}

li {
    display: flex;              
    align-items: center;        
}

.boxes li:first-child {
  flex: 0 0 16.66%;
}

/* Boxes container styling using Flexbox */
.boxes {
    display: flex;
    justify-items: center;
    width: 100%;
}

/* Styling the list itself (ul) to display horizontally */
.boxes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Use flexbox */
    justify-content: space-evenly;
    align-items: stretch;
    width: 100%;
    flex-direction: row; /* Arrange items horizontally */
    gap: 15px; /* Optional: space between the list items */
}

/* Individual list item styling */
.boxes li {
    display: flex;
    background-color: #181a1b;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    flex: 1;
    text-align: center;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: auto; /* Let items take as much space as needed */
}

/* Bold text (for titles) */
.boxes li strong {
    color: #ddd;
    font-weight: bold;
}

/* Dynamic value color (span) */
.boxes li span {
    color: #ddd; /* Bright blue for values */
}

/* Make sure the text aligns properly */
.boxes li span, .boxes li strong {
    display: inline-block;
}
