@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
}

.background {
    position:absolute;
    display:block;
    top: 0;
    left: 0;
    z-index: 0;
}

main{
    background-color: #f5f6f7;
    background-size: cover;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

header{
    background-color: transparent;
    height: fit-content;
    position: absolute;
    z-index: 10;
}

.logos{
    padding-top: 15px;
    width: 100%;
    flex-flow: row wrap;
    display: flex;
    align-items: center;
}

.truck {
    width: 70px;
}

.certification {
    width: 80px;
}

.logos .idt {
    width: 180px;
}

/* Container principal */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 11;
}

.form-container {
    width: 100%;
}

h1 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

p {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Inputs */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #9A1C1F;
    outline: none;
    box-shadow: 0 0 5px #001c4c9d;
}

/* Botão de login */
button {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #9A1C1F;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #b73535;
}

a {
    color: #b73535;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
    text-decoration: none;
    text-align: center;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-container {
        padding: 20px;
    }

    .form-container {
        padding: 20px;
    }

    .logos img {
        height: auto;
    }
}

@media (max-width: 480px) {
    .logo{
        width: 80px; 
        height: auto;
    }

    .logoZeentech {
        width: 150px;
    }
}
