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;
}


.btn-apross-primario {
    background-color: #ff2900;
    color: #fff;
    border-radius:12px;
}

.btn-apross-primario:hover, .btn-apross-primario:focus {
    background-color: #eb4323;
    color: #fff;
}


.box-certificado {
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 1px 1px 15px -8px;
    padding: 30px;
    width: 100%;
    margin: 20px auto 0;
}

.box-certificado p, .box-certificado h2 {
        color: #333c4e;
}


.link-text{
    color: #ff0000;
    text-decoration: underline;
}

.btn-100{
    width:100%;
    margin-bottom:20px;
}

.bi-arrow-counterclockwise {
    margin-left: 5px;
    width: 39px;
    height: 39px;
    margin-top: -5px;
    background-image: url('../images/icons/arrow-counterclockwise.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

    .bi-arrow-counterclockwise:hover {
        background-color: #e9ecef;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    }

    .bi-arrow-counterclockwise:active {
        transform: scale(0.95) rotate(-360deg);
    }