/* register, login page, reset password page */
#registration,
#login,
#reset-password,
#reset-password-request,
#password-reset-check-mail,
#register-confirmation {
  margin: 0;
  padding: 50px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f9fc;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

#registration .card, #login .card, #reset-password-request .card, #password-reset-check-mail .card, #reset-password .card, #register-confirmation .card {
  width: 650px;
  padding: 25px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card img {
  max-width: 300px;
}

.card input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  box-sizing: border-box;
}

.card button {
  width: 100%;
  padding: 10px;
  border: none;
  background-color: #46b82e;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.card button:hover {
  background-color: #46b82e;
  color: white;
  opacity: 0.8;
}

.invalid-feedback {
  color: red;
  font-size: 0.875em;
  margin-top: 5px;
}

#registration .is-invalid {
  border-bottom: 1px solid red;
}

#reset-password input {
  width: 100%;
}

#register-confirmation .btn-primary {
  background-color: #46b82e;
  border: 1px solid #46b82e;
}

@media (max-width: 576px) {
  #registration img,
  #login img,
  #reset-password img {
    width: 100%
  }

  #login, #registration, #reset-password-request, #password-reset-check-mail, #reset-password, #register-confirmation {
    align-items: normal;
    height: 100%;
    padding: 0;
  }

  #login .card, #registration .card, #reset-password-request .card, #password-reset-check-mail .card, #reset-password .card, #register-confirmation .card{
    border-radius: 0;
    justify-content: center;
  }
}
/* register, login page */

/* footer */
.footer-links li {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
/* footer */

/* Select2 */
/* Glavni Select2 box + border */
#registration_form_country + .select2-container .select2-selection--single {
    height: 32.5px;
    border: 1px solid #ddd;     /* <-- dodato */
    border-radius: 4px;                    /* po želji, možeš promeniti */
}

/* Tekst unutar boxa */
#registration_form_country + .select2-container .select2-selection__rendered {
    line-height: 32.5px;
}

/* Strelica */
#registration_form_country + .select2-container .select2-selection__arrow {
    height: 32.5px;
}
/* Select2 */

/* Osnovni stil za responzivnu logo */
.logo-img {
    width: 100%;
    height: auto;
    max-width: 350px;
    transition: max-width 0.3s ease;
}
/* Osnovni stil za responzivnu logo */


/* Accordion */
.accordion {
    --bs-accordion-active-bg: #46b82e; /* Željena boja pozadine */
    --bs-accordion-active-color: white; /* Željena boja teksta */
    --bs-accordion-btn-focus-box-shadow: none; /* Uklanja plavu senku fokusa */
}

.accordion-button {
    font-family: "Raleway", sans-serif;
    color: #444444;
}
/* Accordion */

/* List */
.feature-list li {
    margin-bottom: 0.8rem;
    color: #6c757d;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    border-radius: 20px;
}

.gradient-custom {
    background: linear-gradient(135deg, #46b82e 0%, #46b82e 100%);
}
/* List */

/* Zamena boje check ikonica */
.feature-list li i {
    color: #46b82e !important; /* Zelena boja za check ikonicu */
}

/* Buttons */
.btn-outline-primary {
    border-color: #46b82e; /* Zelena boja za border */
    color: #46b82e; /* Zelena boja za tekst */
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #46b82e; /* Zelena boja pri hoveru */
    color: white; /* Beli tekst pri hoveru */
}

/* Stil za dugmad sa gradijentom */
.gradient-custom {
    background: linear-gradient(135deg, #46b82e 0%, #82d981 100%); /* Zeleni gradijent */
}

.gradient-custom:hover {
    opacity: 0.9; /* Blagi hover efekat */
    color: white; /* Tekst ostaje beo */
}

#header .btn-getstarted {
    position: relative;
    width: 140px;
    height: 40px;
    text-align: center;
}

#header .btn-getstarted::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: "";
    width: 140px;
    height: 40px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    -webkit-animation: sdb03 3s infinite;
    animation: sdb03 3s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb03 {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.1);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes sdb03 {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.1);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.btn-primary {
    background-color: #46b82e;
    border: 1px solid #46b82e;
}
/* Buttons */

/* Contact */
 .contact .btn:hover {
     background: #46b82e;
     border-color: #46b82e;
 }
/* Contact */

/* Testimonials */
.testimonials .testimonial-item .customer-name {
    font-size: 20px;
    font-weight: bold;
}
/* Testimonials */