html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-image: url('../images/bkground2.webp');
    background-size: cover;
}

    body:before {
        content: "";
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: -1;
        background-color: rgba(255, 255, 255, 0.8);
    }

footer
{
    background-color: white;
}


input[type="file"] {
    display: none;
}

.custom-file-upload {
    border: 1px solid #f1f1f1;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    background-color: #6a6a6a;
    border-radius: 5px;
}

.video-container {
    margin-top: 20px;
}

video {
    width: 100%;
    max-height: 720px;
    border: 2px solid #f1f1f1;
    border-radius: 10px;
}

.error-message {
    color: red;
    margin-top: 10px;
}

.textbox-container {
    display: flex;
    margin: 0 auto;
    align-items: center;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .textbox-container input[type="text"] {
        border: none;
        outline: none;
        padding: 10px;
        font-size: 16px;
        width: 100%;
    }

    .textbox-container button {
        border: none;
        background-color: #007bff;
        color: white;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        margin-left: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .textbox-container button:hover {
            background-color: #0056b3;
        }

        .textbox-container button .fas {
            margin-right: 5px;
        }


.button {
    border: none;
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    /*margin-left: 10px;
    display: flex;*/
    align-items: center;
    justify-content: center;
}

    .button:hover {
        background-color: #0056b3;
    }

    .button .fas {
        margin-right: 5px;
    }