* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    outline: none;
}

:root {
    --box-shadow-componentes: 6px 6px 4px #00000025;
}

img {
    width: auto;
    height: auto;
}

h1 {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

h2 {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=date],
input[type=time],
input[type=checkbox],
textarea {
    outline: none;
    letter-spacing: 1px;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=date],
input[type=time],
select,
textarea {
    box-shadow: var(--box-shadow-componentes);
    border-radius: 8px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    padding: 8px 12px;
}

textarea {
    resize: none;
}

input[type=date],
input[type=time] {
    width: fit-content;
}

input[type=date] + input[type=time] {
    margin-left: 10px;
}

input[type=checkbox] {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    outline: none;
}

input:not([button]):disabled, textarea:disabled {
    opacity: 0.33;
}

/*Classe do botão*/
.button input[type=submit],
.button input[type=button],
.button button,
.dt-buttons button {
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 5px;
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    box-shadow: var(--box-shadow-componentes);
    color: #FFF;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    box-shadow: 2px 2px 3px #999;
}

.button input[type=submit]:active,
.button input[type=button]:active,
.button button:active,
.dt-buttons button:active {
	box-shadow: 0 5px #666;
	box-shadow: 0 0px #999;
	transform: translateY(2px);
}

.button .procurarButton:active {
    transform: translateY(2px);
}

input[type=button]:disabled{
    opacity: 0.7;
    cursor: default;
}

.dt-buttons {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}