#home {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

#home .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    border-bottom: 2px solid #ccc;
    background-color: var(--cor_principal);
}

#home .logo img {
    max-width: 300px;
    width: 50%;
}

#home .main {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    padding-left: var(--pad-main-result);
    padding-right: var(--pad-main-result);
    margin-top: 20px;
    flex-direction: column;
}

#home .main .top {
    width: calc(100% - 40px);
}

#home .main h3 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 10px;
    text-align: center;
}

#home .main h4 {
    font-size: 16px;
    font-weight: 400;
    color: #7A7A7A;
    text-align: center;
}

#home .main form {
    width: 100%;
    margin-top: 20px;
}

#home .main form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

#home .main form input {
    display: block;
    font-size: 1rem;
    width: 100%;
    border: 1px solid #666;
    border-radius: 3px;
    padding: .5rem 1rem;
}

#home .main form p.erro {
    font-weight: 600;
    font-size: 0.75rem;
    color: #666b7d;
}

#home .main form button {
    display: block;
    width: 100%;
    margin-top: 15px;
    background-color: var(--cor_principal);
    outline: none;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    transition: 0.2s;
}

#home .main form button:focus {
    background-color: #c4286b;
}

#home .main form button p {
    color: #ffffff;
    text-decoration: none;
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
}

#home .main .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 100px;
}

#home .main .bottom p {
    text-align: center;
}