﻿
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
    --primary-color: rgb(255,122,0);
}

body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont,'Segoe UI Emoji';
    box-sizing: border-box;
}

.nav-link {
    color: white;
    font-size: 1rem;
}

    .nav-link :hover {
        color: var(--primary-color);
    }

.bg-primary1 {
    background-color: var(--primary-color)
}

#showcase {
    background: url(Images/Truck1.jpg);
    background-size: cover;
    height: 80vh;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -70px;
}

    #showcase #login {
        height: 400px;
        width: 400px;
        margin-top: 100px;
        background-color: rgba(0,0,0,.9);
        border-radius: 20px;
        border: 3px solid var(--primary-color);
        transform: translateY(-50px);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        #showcase #login label {
            font-size: 2rem;
            color: white;
        }

.btn_Login {
    background-color: var(--primary-color);
    margin-top: 20px;
    padding: 10px 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

#showcase .text-center {
    font-size: 1.5rem;
}
