body{
    background: #171E28;
    font-family: 'Poppins Regular';
}
input:focus, textarea:focus{
    outline: none; /* Elimină bordura implicită */
    border: 1px solid #68758c;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="number"]:focus {
    -moz-appearance: textfield;
    border: 0px solid #68758c!important;
}
input::placeholder {
    color: #a0a8b4; /* Culoarea textului din placeholder */
    opacity: 1; /* Face placeholder-ul mai vizibil (implicit e mai transparent) */
}
.special-text-green{
    color: #46B399;
}
.btn{
    border: none;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.btn-def{
    padding: 13px 27px;
    border-radius: 999px;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-def:hover {
    background-color: #46B699;
}
.special-fon-green{
    background-color: #46B699;
    color: white;
}

img{
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.link-green {
  color: #46b699;
  transition: color 0.3s ease;
}

.link-green:hover {
  color: #5bc0a7;
}

@media (max-width: 1024px) { 
    .btn-def {
        padding: 9px 15px;
    }

    .arrow-left {
        width: 17px;
        margin-left: 1rem;
    }

}


@media (max-width: 1000px) { 
    .btn-def {
        padding: 6px 14px;
    }
    .arrow-left {
        width: 14px;
        margin-left: .5rem;
    }


}
