/* Background gradient for the entire body */
body {
    background-color: offwhite;

/*    background-image: linear-gradient(43deg, #aed041 0%, #d6cc6c 46%, #ed9d06 100%);*/
    height: 100vh;
    font-family: Arial, sans-serif;
}

/* Spacing adjustment for image div to accommodate fixed navbar */
.image-div {
    padding-top: 3%;
    padding-bottom: 3%;
}

/* Form styling */
form {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Logo above the form */
.logo-img {
    max-width: 150px;
}

/* Social media icons */
.social-icons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icons a {
    display: block;
    color: white;
    font-size: 2rem;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
}

.social-icons a.facebook { background-color: #3b5998; }
.social-icons a.Whatsapp { background-color: #25d366; }
.social-icons a.instagram { background-color: #e4405f; }

.social-icons a:hover {
    opacity: 0.7;
}

/* Responsive Design for Mobile Views */
@media (max-width: 768px) {
    /* Make social media icons horizontal at the bottom for mobile view */
    .social-icons {
        position: fixed;
        top: unset;
        bottom: 20px;
        right: 0;
        left: 0;
        justify-content: center;
        flex-direction: row;
    }

    .social-icons a {
        margin: 0 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        line-height: 40px;
    }
}
