
.animated-input {
    position: relative;
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.animated-input:focus {
    border-color: #ff9800;
    box-shadow: 0px 0px 8px rgba(255, 152, 0, 0.6);
    transform: scale(1.05);
}


.as_btn {
    background-color: #ff9800;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}


.as_btn:hover {
    background-color: #e68900;
    transform: scale(1.1);
}

/* Marqee section */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');


.marquee-container {
    background-color: white;
    padding: 10px;
    overflow: hidden;
    white-space: nowrap;
}

.marquee {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: red;
    animation: marquee 20s linear infinite;
}


@keyframes marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}


