body {
    font-family: Arial, sans-serif;
    background-color: #343a40;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 300px;
    text-align: center;
    position: relative;
}

.login-container h1 {
    margin-bottom: 20px;
}

.login-container input[type="text"],
.login-container input[type="password"],
.login-container button {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-container button {
    background-color: #007bff;
    border: none;
    color: #fff;
    cursor: pointer;
}

#login-main-card:has(>.error-box) {
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
}

#login-main-card .error-box {
    margin-top: 6px;
    margin-bottom: 6px;
}

.error-box {
    width: 60%;
    background: #c56e6e;
    border-radius: 8px;
    border-color: red;
    margin-left: auto;
    margin-right: auto;
}