:root {
    --primary-color: #0b3d91;
    --secondary-color: #0045c4;
    --text-color: #333;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    background-image: url('../img/WeDispatchBG.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: rgba(11, 61, 145, 0.7); */
    z-index: 1;
}

.hero-content {
   
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 1rem;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo-container img {
    max-width: 500px;
    width: 100%;
}

.slogan {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.message-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 2rem;
    margin: 0 auto;
    max-width: 500px;
    text-align: center;
}

.alert-welcome {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
    padding: 1.5rem;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
}

.btn-login {
    background-color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background-color: #0045a0;
    color: chartreuse;
    transform: translateY(-1px);
}