@import url('https://fonts.googleapis.com/css2?family=Alatsi&family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Amiko:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?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=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
  --yellowPrimary:#E7C13C;
  --grayPrimary:#D1D1D1;
  --bluePrimary:#1683E3;
  --black:#000000;
  --whitePrimary:rgba(238, 238, 238, 0.7);
  --redPrimary:#EB3323;
  --yellowSecondary:#F7D24F;
  --blueSecondary:#6EB1EC;
  --link:#1775C1;
  --grayLink:#9A9A9A;
  --greenSecondary:#8FE692;
  --redSecondary:#EF938B;
  --grayNeutro:#979797;
  --black80:rgba(0, 0, 0, 0.8);
  --black30:rgba(0, 0, 0, 0.3);
  --black50:rgba(0, 0, 0, 0.5);
  --grayCardDark:#D1D1D1;
  --grayCardLight:#D9D9D9;
  --white:#FFF;
  --alegreya:"Alegreya Sans", sans-serif;
  --amiko:"Amiko", sans-serif;
  --alatsi:"Alatsi", sans-serif;
--poppins:"Poppins", sans-serif;
    --roboto:"Roboto", sans-serif;
}
main{
    background: var(--black);
    min-height: 100vh;
    font-family: var(--alegreya);
}
p.text{
    font-size: 16px;
    font-family: var(--amiko);
    font-weight: 400;
    color: var(--grayNeutro);
}
a{
    text-decoration: none;
}

.logo-login{
    width: 250px;
    height: 150px;
    object-fit: cover;
}

.card{
    border: none;
    border-radius: 15px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    padding: 30px;
}

.card-body{
    padding: 0;
}

.title-card{
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 0;
}


.form-group{
    position: relative;
}
.form-group label{
    position: absolute;
    top: -11px;
    left: 8px;
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    color: var(--grayNeutro);

}

input.form-control{
    border: 1.5px solid var(--grayNeutro);
    border-radius: 10px;
    padding-block: 0.6rem;
}

.link{
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 0;
}

.btn.btn-primary{
    font-family: var(--alatsi);
    border-radius: 50px;
    font-size: 23px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: var(--yellowSecondary);
    border: none;
    color: var(--black);
}

.blue{
    color: var(--link);
}

.gray{
    color: var(--grayLink);
}

.btn.btn-outline-secondary{
    font-family: var(--amiko);
    font-size: 20px;
    color: var(--black);
    border:1px solid var(--grayCardDark);
    border-radius: 50px;
    padding: 10px 30px;
}

.container{
  min-height: 100vh;
  display: grid;
  align-content: center;
}

.form-check-label{
    font-size: 14px;
    font-weight: 500;
}

.btn.btn-secondary{
    font-family: var(--amiko);
    font-size: 20px;
    color: var(--white);
    background: var(--black);
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 400;
}

.link-second{
    font-size: 23px;
    font-family: var(--alatsi);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-decoration: none;
    color: var(--black);
}

.roboto{
  font-family: var(--roboto);
}
.btn-dark{
    background: var(--black);
    color: var(--white);
    border-radius: 90px;
    padding: 1rem 0.5rem;
    font-size: 18px;
    font-family: var(--roboto);
    font-weight: 600;
    line-height: 18px;
}

.btn-outline-dark{
    border-radius: 90px;
    padding: 1rem 0.5rem;
    font-size: 18px;
    font-family: var(--roboto);
    font-weight: 600;
    line-height: 18px;
}

.form-control.input-dark{
    color: var(--black);
    border: 1.5px solid var(--black);
}

.label-dark{
    color: var(--black) !important;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--roboto);
}