* {
    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;
}

:root {
    --Cinza-main-input: #c6cbce;
    --Cinza-main-button: #a5aaaa;
}

body {
    background-image: url("../imagens/fundo-bi.svg");
    background-size: cover;
    background-repeat: no-repeat;
	min-height: 100vh;
	background-position: center;
}

.section-main {
    position: absolute;
    right: 1rem;
    bottom: 5rem;
}

.article-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    width: 25rem;
}

.article-input a {
    width: 100%;
}

.div-input {
    display: flex;
    position: relative;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 5px;
    border: 3px solid var(--Cinza-main-input);
    background: #fff;
    align-self: stretch;
    height: 40px;
}

.div-input input {
    border: 0;
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding-left: 40px;
    min-height: 32px;
}

.div-input img {
    width: 24px;
    z-index: 1;
}

.div-input:has(input:focus) {
    border: 3px solid #7e7e7e;
}

input[type="button"] {
    border-radius: 5px;
    border: 2px solid #000;
	color: #FBFBFB;
    background: var(--Cinza-main-button);
    width: 100%;
    padding: 8px;
    cursor: pointer;
    font-size: 16px;
}
