.btn-disabled-style {

    color: #6c757d;
    border-color: #6c757d;
    opacity: 0.65;

}

.btn-no-style {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.form-control-disabled {
    background-color: #e9ecef;
    opacity: 1;
}

.border-radius {
    border-radius: 20px;
    box-shadow: 0px 0px 12px rgb(217, 217, 217);
}

.circle {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background-color: #ED900C;
    display: inline-block;
    text-align: center;
    font-size: 16px;
}

.logo-circle {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: #ED900C;
    display: inline-block;
    text-align: center;
    font-size: 20px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.log-badgeage {
  animation: zoom-in-zoom-out 1s ease ;
}
@keyframes zoom-in-zoom-out {
  0% {
    scale: 100%;
  }
  50% {
    scale: 150%;
  }
  100% {
    scale: 100%;
  }
}