/* ---------- Fonts ---------- */
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato.ttf') format('truetype');
}

/* ---------- Body ---------- */
html, body {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom right, #01af96, #2939ba);
    font-family: 'Lato', sans-serif;
}

/* ---------- Main Container ---------- */
.container {
    width: 1100px;
    height: 400px;
    padding: 30px 30px 5px 30px;
    background: url("https://invoiceapp.inshaaltech.com/assets/images/bg-login.png") no-repeat right bottom;
    background-size: contain;
    background-color: #fff;
    border-bottom: 7px solid #01af96;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

/* ---------- Logo and Heading ---------- */
img {
    display: flex;
    width: 400px;
    height: auto;
}

h1 {
    display: flex;
}

/* ---------- Date and Time ---------- */
#dateTimeDisplay {
    display: flex;
    margin-top: 30px;
    font-weight: bold;
}

/* ---------- Login Heading ---------- */
.heading {
    display: flex;
    margin-top: 0;
    font-size: 24px;
}

/* ---------- Labels and Inputs ---------- */
.login-section {
    display: flex;
    margin-top: 15px;
}

label {
    width: 10%;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 500;
    background-color: #007bff;
    color: #fff;
    border-left: 5px solid #01af96;
    border-top: 1px solid #007bff;
    border-bottom: 1px solid #007bff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

input {
    width: 20%;
    margin-left: -5px;
    padding: 6px 10px;
    border: 1px solid #007bff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

input:focus {
    border-color: #01af96;
    outline: none;
}

/* ---------- Login Button ---------- */
.login-btn {
    width: 34%;
    margin-top: 25px;
    padding: 10px;
    font-size: 16px;
    background-color: #01af96;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.login-btn:hover {
    background-color: #007bff;
}
