* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-color: #80bdff;
  --secondary-color: #eaeaeb;

  --primary-color-hover: #0b5ed7;
  --secondary-color-hover: #d7dce0;

  --on-primary-color: #fff;
  --on-secondary-color: #504d4d;

  --mutted-color: #9ab7c5;
}

body {
  font-size: 16px;
  width: 100%;
  height: 100vh;
  background: #e5e5e5;
}

.header {
  background-color: var(--primary-color);
  color: var(--on-primary-color);
  padding: 16px;
  width: 100%;
  text-align: center;
  position: relative;
  top: 0;
}

#Logo {
  width: 100px;
  background-color: white;
  border-radius: 10px;
  padding: 8px;
}

main {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 16px;
}

main .mask {
    /* background: url("../images/Logo_Colorido.png") no-repeat center center fixed; */
  filter: blur(1px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#FormLoginContainer{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background-color: #fff;
}

#FormLogin,
#Certidoes,
#LogoContainer {
  background: #ffff;
  border-radius: 10px;
  width: 320px;
  max-width: 100vw;
}

#LogoContainer{
  display: block;
}

#LogoContainer img{
  max-width: 100px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* form login */

#LoginHeader {
  background-color: var(--primary-color);
  color: var(--on-primary-color);
  padding: 16px;
  border-radius: 10px 10px 0 0;
  width: 100%;
  text-align: center;
}

.content {
  width: 100%;
  padding: 16px;
}

#FormLogin #LoginButton {
  background-color: var(--primary-color);
  margin-top: 16px;
  color: white;
  padding: 4px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}

/* certidoes */
#Certidoes {
  display: none;
}

#CertidoesContainer{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

.cert-card {
  width: 100%;
  padding: 16px;
  display: inline-block;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1.1rem;
  color: var(--on-secondary-color);
  background-color: var(--secondary-color);
  cursor: pointer;
}

.cert-card:hover {
  background-color: var(--secondary-color-hover);
}

.cert-card .card-header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.cert-card .card-body .description {
  color: var(--mutted-color);
}

/* global */

.title{
  text-align: center;
  margin: 16px 0 0;
}

footer {
  background-color: var(--primary-color);
  color: white;
  padding: 16px;
  width: 100%;
  text-align: center;
  position: relative;
  bottom: 0;
}

hr {
  width: 100%;
  height: 1px;
  border: 0px;
  margin: 8px 0;
  background-color: #dddddd;
}

h6{
  color: var(--mutted-color);
}

fieldset {
  width: 100%;
  border: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

fieldset input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1.1rem;
  color: var(--on-secondary-color);
}

/* media query */
@media screen and (min-width: 768px) {
  #Logo {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }

  #LogoContainer{
    display: block
  }
}
