.login-container {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #f5f4ef 0%, #ece8dd 100%);
}

.login-card {
    width: 400px;
    padding: 40px;
    border-radius: 20px;
    background: #355c4b;
    text-align: center;
    color: #fff;
}


.login-card input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 10px;
    border: none;
    background: #3a3a3a;
    color: #fff;
    font-size: 16px;
}

.login-card input::placeholder {
    color: #bbb;
}

.login-card button {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    margin-top: 15px;
    background: linear-gradient(90deg, #d4af37, #ff8c00);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.login-card button:hover {
    transform: scale(1.02);
}

.login-card img {
    width: 60px;
    
}

.login-card h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-principal {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    margin-top: 15px;
    background: linear-gradient(90deg, #d4af37, #ff8c00);
    font-weight: bold;
    cursor: pointer;
}

.btn-secundario {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-top: 10px;

    background: #f5f4ef;
    color: #2f2f2f;

    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-secundario:hover {
    border-color: #355c4b;
    color: #355c4b;
}

.btn-sair {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: #355c4b;
    color: #fff;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: black;
    
}

a:hover {
    opacity: 0.65;
}

.trocar-modo {
    display: block;
    margin-top: 15px;
    color: #d4af37;
    cursor: pointer;
}

.topo {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 30px;
}

.btn-sair {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;

    background: #355c4b;
    color: #fff;

    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-sair:hover {
    background: #2b4a3c;
}

.dashboard {
    padding: 120px 40px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card h3 {
    margin-bottom: 10px;
    color: #355c4b;
}

.card input {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.login-card,
.topo,
.cards {
    animation: fadeIn 0.4s ease;
}

button {
    transition: all 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
}

.form-veiculo {
    margin: 30px auto 0;
    max-width: 600px;
    width: 100%;

    padding: 30px;
    border-radius: 16px;

    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);

    animation: fadeIn 0.3s ease;
}

.form-veiculo input {
    width: 100%;
    padding: 14px;
    margin-top: 12px;

    border-radius: 10px;
    border: 1px solid #ddd;

    font-size: 15px;
}

.acoes-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.acoes-form button {
    flex: 1;
}

.acoes-card {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-editar {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #d4af37;
    cursor: pointer;
}

.btn-excluir {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #c0392b;
    color: #fff;
    cursor: pointer;
}

.btn-pdf {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #1a3a6b;
    color: #fff;
    cursor: pointer;
}