body {
    background: rgb(141, 170, 62);
}
.card{
    margin: 2px;
}
.logo {
    width: 100px;
    margin: auto;
}

.logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 0px 3px #fff,
        0px 0px 0px 3px #fff,
        1px 1px 3px #fff,
        -1px -1px 1px #fff;
}

.form-field {
    width: 100%;
    height: 35px;
    padding-left: 10px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255);
    display: inline-flex;
}

.form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1.3rem;
    color: #000;
    font-weight: bolder;
}

.logo img {
    transition: transform .4s ease-in-out;
}

/* The Transformation */
.logo:hover img {
    transform: scale(1.2) rotate(720deg);
}

.required {
    color: #fff;
}

.bg-white-div {
    position: relative;
    background: #fff; /* White background for content */
}

/* Pseudo-element for the slideshow background image */
.bg-white-div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.5;
    animation: fadeSlideshow 16s infinite; /* 20 seconds for the complete slideshow cycle */
}

/* Keyframes for fading slideshow */
@keyframes fadeSlideshow {
    0%, 20% { 
        background-image: url('../../../asset/img/stbg-1.jpg'); 
    }
    25%, 45% { 
        background-image: url('../../../asset/img/stbg-2.jpg'); 
    }
    50%, 70% { 
        background-image: url('../../../asset/img/stbg-3.jpg');
    }
    75%, 95% { 
        background-image: url('../../../asset/img/stbg-4.jpg'); 
    }
    100% { 
        background-image: url('../../../asset/img/stbg-5.jpg'); 
    }
}