body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-image: linear-gradient(bottom, rgb(255 255 255) 2%, rgb(255 255 255) 100%)!important;
    font-family: 'Arial', sans-serif;
    color: #333;
}


.container {
    text-align: center;
    padding: 40px;
    border-radius: 10px;
}

.logo img {
    width: 26%;
    margin-bottom: 5px;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #444;
}

.error-message, .logout-message {
    color: #e74c3c;
    margin-bottom: 20px;
    font-weight: bold;
}

form div {
    margin-bottom: 20px;
}

input[type="text"], input[type="password"] {
    width: 30%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #ff7e5f;
    outline: none;
}

input[type="submit"] {
    width: 30%;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #009640;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    .logo img {
        width: 100px;
    }

    h1 {
        font-size: 20px;
    }

    input[type="text"], input[type="password"], input[type="submit"] {
        font-size: 14px;
    }
}


@media (min-width: 980px) {
    .sub-nav {
        background-image: none!important;
    }
}
