html, body {
    background-color: #f5f5f5;
    color: #212121;
    font-size: 20px;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.linkForm {
    color:#212121;
    text-decoration: none;
}

.linkForm:hover {
    color: #E53935;
}

.main-content {
    flex: 1;
    margin-top: 6rem;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#logo {
    margin-bottom: 6rem;
}

.inputIC {
    border: 2px solid #000000;
    border-radius: 15px;
}

.inputIC:focus {
  border-color: #b80000;
  outline: none;
  box-shadow: none;
}

.btnEnviar {
    border: 1px solid #000000;
    border-radius: 25px;
    background-color: #C62828;
    font-size: 20px;
    color: #212121;
    padding: 10px 20px;
    width: 100%;
}

.btn:hover {
    background-color: #E53935;
}

