html {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: hidden;
    background-color: #ffffff;
}

:root {
    --common-color: rgb(154, 231, 168);
}


.login-box{
    background-color: var(--common-color);
    border-radius: 20px;
    padding: 60px 30px;

}
.login-head1{
    color: #000000;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
}

.head-text-black{
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}
.gallery-card {
    transition: 0.3s ease;
    overflow: hidden;
}


.gallery-card:hover {
    transform: translateY(-8px);
}


.gallery-img {

    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;

}


.gallery-card:hover .gallery-img {

    transform: scale(1.08);

}

