﻿body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    background-image: url('/assets/images/background_truck1.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100%;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

    .login-box h2 {
        margin-bottom: 20px;
        color: #2c3e50;
    }

    .login-box .logo {
        width: 100px;
        margin-bottom: 20px;
    }

.label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 6px;
    text-align: left;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 93%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.login-box .forgot-password {
    text-align: left;
    font-size: 12px;
    margin-top: -10px;
}

    .login-box .forgot-password a {
        color: #3498db;
        text-decoration: none;
    }

        .login-box .forgot-password a:hover {
            text-decoration: underline;
        }

.button {
    width: 100%;
    padding: 14px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

    .button:hover {
        background-color: #2980b9;
    }

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #555;
}

    .footer a {
        color: #3498db;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }