body {
    /* Create an aesthetic background gradient */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 50%, #da291c 50%);
    background-blur: 5px;
    /* Add a slight blur to the background */
    display: flex;
    justify-content: center;
    align-items: top;
    height: 100vh;
    margin: 0;
}

.auto-growable-input {
    min-height: 30px;
    width: 100%;
    box-sizing: border-box;
}

.enrollment-form {
    background-color: #fff;
    /* Background color for the form */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* Add a shadow to the form */
}

/* Customize the primary color of Bootstrap buttons and form elements */
.btn-primary {
    background-color: #da291c;
    border-color: #da291c;
}

.btn-primary:hover {
    background-color: #b32216;
    border-color: #b32216;
}

.step-btn-container {
    display: flex;
    justify-content: flex-end;
    /* Align button to the right */
    margin-top: 20px;
    /* Add margin to move button lower */
}

/* Style the modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Style the modal content */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #000000;
    width: 80%;
    max-width: 600px;
    text-align: center;
    position: relative;
}

/* Style the close button */
.close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

/* Style the canvas */
#signature-pad {
    border: 1px solid #000000;
}

/* Style the modal buttons */
.modal-buttons {
    margin-top: 20px;
}

/* Center the image horizontally and vertically within its container */
.signature-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    border-line;
    /* Ensure the container takes full height of the parent */
}

/* Make the image responsive */
.img-fluid {
    max-width: 100%;
    /* Ensure the image doesn't exceed its container's width */
    max-height: 100%;
    /* Ensure the image doesn't exceed its container's height */
    border-style: solid;
}
.small-image {
    max-width: 200px; /* Set the maximum width */
    height: auto; /* Allow the height to adjust proportionally */
}