* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* The box everything sits in */
.login-con {
    width: 300px;
    margin: 50px auto;
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
}

/* Force the form to stack elements vertically */
#LoginForm {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between inputs and button */
}

/* Make sure inputs and button take up the full width */
#username, #password, #LoginForm button {
    width: 100%;
    padding: 10px;
    box-sizing: border-box; /* Crucial for padding */
}

/* Give the button a clear color so you can see it */
#LoginForm button {
    background-color: #ff4b81;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}