.form-container {
    display: flex;
    flex-direction: column; /* I vendos elementet një mbi një */
    align-items: center; /* E qendron përmbajtjen horizontalisht */
    justify-content: center; /* E qendron përmbajtjen vertikalisht */
    text-align: center;
    width: 100%; /* E bën të shtrihet në të gjithë gjerësinë */
    margin: 0 auto; /* E qendron në mes */
}
/* Mbështjellësi kryesor për qendrimin e formës */
.lidh-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* STILIZIMI I FORMËS */
.lidh-container {
    background-color: #E5E55A;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 25%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {
    .lidh-container {
        width: 90%;  /* E bën më të gjerë në ekrane të vegjël */
    }
}
/* Stili i titullit */
.lidh-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #5563DE;
}

/* Teksti i zakonshëm */
.lidh-text {
    font-size: 1rem;
    color: #000;
    margin-bottom: 15px;
}

/* Stili i fushave të inputit */
.lidh-input {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: #f0f0f0;
    color: #333;
    transition: border-color 0.3s ease;
}

.lidh-input:focus {
    border-color: #5563DE;
    outline: none;
    background-color: #fff;
}

/* Stili i butonit */
.lidh-btn {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.lidh-btn:hover {
    background-color: #4556c8;
}

/* Stili i linkut të shkurtuar */
.lidh-short-url {
    margin-top: 15px;
    font-weight: bold;
    color: #27ae60;
}

/* Mesazhet e gabimeve */
.lidh-error {
    color: #E74C3C;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Stili i pyetjes CAPTCHA */
#lidh-captcha-question {
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 10px;
}

/* Stilizimi i logos */
.lidh-image {
    max-width: 100px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* 🔹 RESPONSIVE DESIGN: Rregullime për telefonat e mençur */
@media screen and (max-width: 768px) {
    .lidh-container {
        width: 90%; /* Në mobile, forma bëhet më e gjerë për të përdorur hapësirën e ekranit */
        padding: 20px;
    }

    .lidh-title {
        font-size: 1.5rem;
    }

    .lidh-text {
        font-size: 0.9rem;
    }

    .lidh-btn {
        font-size: 0.9rem;
        padding: 10px;
    }

    .lidh-input {
        font-size: 0.9rem;
        padding: 10px;
    }
}

.builder-hero-container {
    display: flex;
    justify-content: center;  /* Qendron në mes horizontalisht */
    align-items: center;      /* Qendron në mes vertikalisht */
    height: 100vh;            /* Merr 100% të lartësisë së faqes */
    flex-direction: column;   /* Nëse ka elemente të tjerë, i vendos një mbi një */
}
.gradient1-text {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    background:linear-gradient(90.22deg,#3385e7 2.61%,#60d7d8 96.89%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px; /* Hapësirë mes titullit dhe formës */
}
