@import url('https://fonts.googleapis.com/css2?family=Anton&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&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&family=Titillium+Web:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    background: #1c1f2a;
    padding: 40px;
    gap: 20px;
    flex-wrap: nowrap;
}

.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.card {
    background: #2c2f3c;
    padding: 25px;
    border-radius: 8px;
    width: 320px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.card h2 {
    margin-bottom: 20px;
    font-family: 22px;
    border-bottom: 2px solid #20e77c;
    padding-bottom: 10px;
    color: #fff;
    text-align: left;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-size: 15px;
    color: #ddd;
}

input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 0px;
    background: #0f0f0f;
    color: #fff;
    font-size: 16px;
}

input:focus {
    outline: 2px solid #20e77c;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.input-group .material-symbols-outlined {
    position: absolute;
    left: 12px;
    color: white;
    font-size: 22px;
    pointer-events: none;
}

input::placeholder {
    color: #ffffffbb;
    opacity: 1;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 0px;
    background: #7f90aa;
    color: #fff;
    font-size: 16px;
}

.input-group input:focus {
    outline: 2px solid #20e77c;
}

button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 0px;
    background: #20e77c;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    margin-top: 15px;
}

button:hover {
    background: #18b864;
}

#resultado {
    margin-top: 20px;
    font-size: 10px;
    text-align: left;
    color: #ffffff;
    font-weight: bold;
    display: none;
}

.tabela {
    max-width: 450px;
    padding: 25px;
    border-radius: 8px;

}

.tabela p {
    margin-bottom: 15px;
    font-size: 12px;
    color: #ffffff;
    line-height: 1.4;
    font-weight: 350;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #444;
    color: #fff;
    font-size: 14px;
    font-weight: 250;
}

th {
    border-bottom: 2px solid #20e77c;
    color: #ffffff;
    font-weight: 750;
}

#resultado {
    margin-top: 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    padding: 15px 0;
}

#resultado .esquerda {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#resultado .valor {
    font-size: 22px;
    font-weight: bold;
    color: #20e77c;
}

#resultado .label {
    font-size: 14px;
    color: #bbb;
    margin-top: 4px;
}

#resultado .direita {
    font-size: 16px;
    color: #fff;
    font-weight: normal;
}
footer{
    color: #ffffff;
}
a{
    color: rgb(170, 41, 41);
}