body {
    margin: 0;
    padding: 0;
    background-image: url('../images/Conrail_GP40.jpg'); /* Path relative to CSS file */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.login-page {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-page h1 {
    color: #333;
}

.login-page h4 {
    color: #555;
}

.form-group label {
    font-weight: bold;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

.btn-danger {
    background-color: #d9534f;
    border: none;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-danger:hover {
    background-color: #c9302c;
}
