
/* Center content and add background image with overlay */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-image: url('./src/wallp_1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

/* Dark overlay */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Adjust darkness by changing opacity */
    z-index: 1;
}

/* Form container styling */
.container {
    position: relative;
    z-index: 2;
    width: 100%;
    opacity: 0.8;
}