@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
:root {
    --bg-color: #1a1d20;
    --input-color: #292e32;
    --font-color:#90939c ;
    --white-color:white ;
    --primary-color: #f46c64;
    --error-color: #E81306;
    --success-color: #06B517;
    --a-selected-color: #F46C64;
    --color-red: #F46C64;
}

* {
    font-family: "Rubik", sans-serif;    
}

h5.title {
  width: 100%;
  text-align: center;
  font-family: "Oswald", sans-serif;  
  color: var(--color-red);
  display:inline;
  background: url(../icons/icon-anunc.png) no-repeat 0px 5px;
  padding-left: 35px;
  position: relative;
  padding-bottom: 5px;
}

h5.title::after {
  content: "";
  display: block;
  width: 50%;
  height: 2px; /* Altura da linha */
  background-color: black; /* Cor da linha */
  margin: 0 auto; /* Centraliza a linha horizontalmente */
  position: absolute;
  bottom: 0;
  background-color: var(--color-red);
  left: 35%; /* Alinha a linha ao centro */
}
.list-news {
  margin-top: 50px;
  color: var(--font-color);
}

.list-news li {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}
.list-news li > a {
  color: var(--color-red);
  font-family: "Rubik", sans-serif;
  font-weight: lighter;
  padding-left: 10px;
}


body.new-body{
    background: var(--bg-color);
}
.alert-error {
  max-width: 532px;
  background-color: rgb(244, 108, 100, 0.4);
  justify-content: center;
  align-items: center;
  text-align: left;
}


.new{
  border-radius: 0 !important;
  background: var(--input-color);
  border-color: var(--input-color);
  font-size: 15px;
  font-weight: 400;
  color: var(--white-color);
  padding: 30px 0px 31px 0px;
}

.new:placeholder {
  color: var(--font-color);
}

select.new-select, select.new-select:hover, select.new-select:focus{
  border-radius: 0 !important;
  background: var(--input-color);
  border-color: var(--input-color);
  font-size: 15px;
  font-weight: 400;
  color: var(--white-color);
  height: 63px;
  display: inline-block;
  line-height: 1.5em;
  
}


select.input-select{
  background-image: url(../icons/person.png) !important;
  background-position: center;
  
}

.new:focus {
  border-color: transparent !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: var(--input-color) !important;
  color: var(--white-color);
}

.icon-error-input {
  background-image: url(../icons/dangerous.svg) !important;
  background-repeat: no-repeat !important;
  background-position-x: 95% !important;
  background-position-y: 50% !important;
}

.input-checked{
  background-image: url(../icons/task_alt.svg) !important;
  background-repeat: no-repeat !important;
  background-position-x: 95% !important;
  background-position-y: 50% !important;
}

.row {
    width: 100%;
}
.ico-input{
    padding-left: 10px;
}

.custom-input{
    /* padding-bottom: 12px; */
}

.button-primary{
  
    font-family: "Oswald", sans-serif;
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-down:hover {
  
  background: var(--error-color) !important;
}

.m-t-30{
    margin-top: 30px;
}

.text-forgot{
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
}

.main-section{
    background: var(--bg-color);
    height: 100vh;
    padding-top: 110px;
}

h1{
    color: var(--primary-color);
}

.label{
    color: var(--font-color);
    font-size: 16px;
    padding-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}


a, a:hover{
  color: var(--white-color);
}

.custom-a{
  
  font-family: "Oswald", sans-serif !important;
  text-decoration: none !important;
}


a.new-link, a.new-link:hover {
  color: var(--a-selected-color) !important;
}

#nav-sidebar a.selected, #nav-sidebar a:hover {
  color: var(--a-selected-color) !important;
}

input::placeholder {
    font-weight: 600;
}

.div-info-card{
    padding-top: 20px;
    /* padding-bottom: 30px; */
    display: flex;
    flex-direction: column;
}

.text-info-card{
    font-weight: 600;
    color: var(--white-color);
    font-size: 16px;
    padding-bottom: 20px;
}

  
.input-group-text{
    border-radius: 0 !important;
    background: var(--input-color);
    border-color: var(--input-color);
    border-left-color: var(--primary-color);
    height: 63px;
}

.input-group-text{
    color: var(--font-color);
}



.input-error{
  border-left-color: var(--error-color) !important;
  border-left-width: 5px !important;
}

.input-success{
  border-left-color: var(--success-color) !important;
}
.error-icon{
  filter: invert(10%) sepia(99%) saturate(7079%) hue-rotate(7deg) brightness(97%) contrast(95%);
}

.text-new-accout{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-color);
    font-size: 16px;
    font-weight: 600;
    padding-top: 20px;

}

.div-info-login{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 15px;
}

.item-info{
    display: flex;
    align-items: center;
}

.ico-info{
    background: var(--input-color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.desc-info{
    color: var(--font-color);
    font-size: 16px;
    font-weight: 600;
}

.new-account{
    font-size: 16px;
    font-weight: 600;
    padding-left: 5px;
    cursor: pointer;
    text-decoration: underline;
}

.div-sales{
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    padding-left: 5px;
    padding: 25px 0px 0px 0px;
    text-align: center;
}

.div-step{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.required{
    color:red ;
}
.divider-step{
    width:150px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}   

.step-checked {
  color: var(--primary-color) !important;
    background: var(--white-color);
}

.step-select{
    color: var(--primary-color) !important;
    background: var(--white-color);
}

.item-step{
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--white-color);
    height: 60px;
    width: 90px;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-checked{
  cursor: pointer !important;
}

.step-checked:hover{
  cursor: pointer !important;
  background-color:transparent;
  color: var(--white-color) !important;
}

.main-div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.div-logo{
    padding-bottom: 50px;
}

.custom-register{
    padding-bottom: 15px;
    
}

.inside-div{
    width: 532px;
    padding-bottom: 100px !important;
    
    /* background: red; */
}

.info-page{
    color:#E5EFC1;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    padding-bottom: 50px;
}


.divider{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 25px;

}

.m-t-40{
    margin-top: 40px;
}
.bar-divider{
    width: 160px;
    height: 3px;
    border-radius: 3px;
    background: var(--primary-color);
}
.title-divider{
    font-family: "Oswald", sans-serif;
    color: var(--white-color);
    font-size: 24px;
    text-transform: uppercase;
}

.custom-check{
margin-right: 10px !important;
}

.form-check-input:checked{
    background-color: black;
    border-color: black;
}

.form-check-input{
cursor: pointer;
    background-color: var(--font-color);

}

.div-box{
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;

    justify-content: center;

}
.form-check-label{
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);

}

@media (max-width: 990px) {
    .inside-div{
        width: 100% !important;
        padding: 0px 15px;
    }

    .logo{
        width: 250px;
    }
    .div-info-login{
        flex-direction: column !important;
    }

    .item-info{
        padding-bottom: 20px;
    }
    
}




.custom-select {
  position: relative;
  font-family: Rubik;
  font-weigth: 400;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #292e32;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #292e32;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(118, 118, 117, 0.1);
}