@font-face {
    font-family: "Be Vietnam Pro";
    src: url(/fonts/BeVietnamPro-Regular.ttf) format('truetype');
}


body, html {
    height: 100%;
    margin: 0;
    font-family: "Be Vietnam Pro";
    overflow-x: hidden; /* Disable horizontal scrolling */
}

body::before {
    content: '';
    position: fixed; /* or absolute; depending on your needs */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../workBG.png'); /* Path to your image */
    background-size: cover;
    background-position: center center;
    z-index: -1; /* Ensure the overlay is behind content but above the background */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 0; /* Adjust if necessary to ensure it's above the background but below content */
}

.login-modal {
    width: 600px;
    margin: 12% auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    padding: 20px;
    text-align: center;
    background: #FFF;
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;

    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
   
    width: 80%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}



button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
