.search-icon {
    top: 15px;
    right: 40px;
}

.section-space {
    margin-top: 50px;
}

.gradient-text span{
    background: linear-gradient(90deg, #6641fe, #4eaefb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.glassmorphism {
    max-width: 100%;
    width: 100%;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.glassmorphism:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.15);
}

h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-control {
    border: none;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
}

.form-control:focus {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-dark {
    background: linear-gradient(45deg, #6641fe, #4eaefb); /* Use 'background' instead of 'background-color' */
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 5px 20px; /* Added padding for better appearance */
    border-radius: 4px; /* Added border-radius for rounded corners */
}

.btn-dark:hover {
    transition: background 0.5s ease-out; /* Use 'background' instead of 'background-color' */
    background: linear-gradient(45deg, #4eaefb, #6641fe);
}


.text-danger {
    font-size: 0.9em;
    margin-top: -10px;
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 768px) {
    .glassmorphism {
        width: 100%;
        padding: 40px 20px;
    }

}

@media (max-width: 576px) {
    .glassmorphism {
        width: 100%;
    }
}