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: 20px;
    background: linear-gradient(135deg,#e8f0fe);
    font-family: "Segoe UI",Arial,sans-serif;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}



a {
    color: #000000;
    text-decoration: none;
}

.card {
    border-radius: .75rem;
    transition: transform .2s ease-in-out;
}

h2 {
    color: #004085;
    margin-bottom: 1rem;
}

.label {
    color: #6c757d;
    font-weight: bold;
}

.list-unstyled li {
    margin-bottom: .25rem;
}


/***************************************************/
/* OVERLAY                                         */
/***************************************************/
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    display: none;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

/***************************************************/
/* CARICAMENTO FILE                                */
/***************************************************/

#FAD_File_Tutor {
    display: none;
}

.FAD-drop-area {
    border: 2px dashed #4a90e2;
    background: #f8fbff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    color: #357ABD;
    cursor: pointer;
    transition: 0.25s ease;
    max-width: 350px;
}

    .FAD-drop-area:hover {
        background: #eef6ff;
        border-color: #2f6fb3;
    }

    .FAD-drop-area .icon {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .FAD-drop-area.highlight {
        background: #d9ecff;
        border-color: #1f5fa3;
    }

    .FAD-drop-area span {
        font-weight: 600;
        text-decoration: underline;
    }

.FAD-file-info {
    margin-top: 15px;
    padding: 12px 15px;
    background: #e8f4ff;
    border-left: 4px solid #4a90e2;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2f6fb3;
}

    .FAD-file-info .FAD-file-icon {
        font-size: 20px;
    }