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;
}
.signature-pad > canvas {
    display: block;
    width: 100%;
    height: 100%;
   /* margin-bottom: 5px;*/
    /*border: 1px solid #e8e8e8;*/
}

.signature-pad {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
/*    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;*/
    font-size: 10px;
    width: 300px;
    height: 100px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
    /*    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.08) inset;
    
    padding: 16px;*/
}

.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    font-size: 16px;
    animation: fadein 0.5s, fadeout 0.5s 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        top: 0;
    }

    to {
        opacity: 1;
        top: 20px;
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
        top: 20px;
    }

    to {
        opacity: 0;
        top: 0;
    }
}

.account-container {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.account-box {
    background-color: #e3f2fd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 100%;
    opacity: .9;
}

.signature-pad > canvas {
    display: block;
    width: 300px;
    height: 150px;
    margin-bottom: 5px;
}