form.login-form div.login-form-line {
    margin-top: 5px;
    margin-bottom: 5px;
}

form.login-form label {
    min-width: 170px;
    display: inline-block;
}

form.login-form input[type="submit"] {
    background-color: #2c3e50;
    /* A muted blue color */
    color: #ecf0f1;
    /* Light text */
    border: none;
    /* Remove default borders */
    border-radius: 4px;
    /* Rounded corners */
    padding: 10px 15px;
    /* Some padding for space */
    cursor: pointer;
    /* Hand cursor on hover */
    transition: background-color 0.3s ease;
    /* Smooth transition */
    font-size: 16px;
    /* Increase font size a bit */
    outline: none;
    /* Remove the default focus outline */
}

form.login-form input[type="submit"]:hover {
    background-color: #34495e;
    /* Slightly darker blue on hover */
}

form.login-form input[type="submit"]:active {
    background-color: #1a242f;
    /* Even darker when pressed */
}

form.login-form div.submit-line{
    text-align: right;
}

form.login-form div.logos {
    display: flex;
    /* Display child elements in a line */
    justify-content: center;
    /* Center the logos horizontally */
    margin-bottom: 10px;
    /* Add some space below the logos */
}

/* Adjust the class name to match your HTML */
form.login-form img.appius-logo,
form.login-form img.bofrost-logo {
    max-width: 48%;
    height: auto;
    margin-right: 10px;
    max-height: 85px;
}

/* Remove margin from the last logo */
form.login-form img.bofrost-logo {
    margin-right: 0;
}

a.ref {
    text-decoration: none;
    color: #555;
    font-size:10px;
    /* A muted color, can adjust based on your design */
}

a.ref:hover {
    text-decoration: underline;
}

.error-message {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #D8000C;
    background-color: #FFD2D2;
    padding: 10px 15px;
    border-radius: 4px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    opacity: 0;
    /* initially hidden */
    transition: opacity 0.3s;
    /* smooth transition effect */
}

.icon {
    background-color: #D8000C;
    color: #FFF;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}
