body {
        background-color: #fff;
        margin: 0;
}
.shadow:hover {
        -webkit-filter: drop-shadow(5px 5px 5px #222);
        filter: drop-shadow(5px 5px 5px #222);
}

#myshadow:hover {
        -webkit-filter: drop-shadow(2px 2px 2px #222);
        filter: drop-shadow(2px 2px 2px #222);
}
    
    /* Ensure the navbar stays at the top without overlaying content */
    .navbar {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        border-radius: 5px;
    }
    
    /* Add margin to body content to prevent overlap with fixed navbar */
    body {
        padding-top: 60px; /* Height of navbar + some spacing */
    }
    
    /* Container to center only the form */
    .form-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh; /* Center vertically */
    }
    
    /* Styling for the form */
    .form-container {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 300px;
    }
    
    .form-container input, 
    .form-container button {
        width: 100%;
        padding: 10px;
        margin: 8px 0;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }
    
    .form-container button {
        background-color: blue;
        color: white;
        cursor: pointer;
    }
    
    .form-container button:hover {
        background-color: darkblue;
    }
