﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 100%;
}


.footer !important {
    position: fixed;
    width: 100%;
    bottom: 0px;
    margin-top: auto;
    text-align: center;
    padding: 10px;
    align-content: center;
    background-color: #3d4eae;
    text-align:center;
    color: aliceblue;
    /* You can customize the background color as per your preference */
}

.background-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
}

/* Background image for laptop and desktop devices */
@media (min-width: 768px) {
    .background-image {
        background-image: url('path/to/your/laptop-background-image.jpg');
    }
}

/* Background image for mobile devices */
@media (max-width: 767px) {
    .background-image {
        background-image: url('path/to/your/mobile-background-image.jpg');
    }
    