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;
}


/*custom design for home*/
.sso-container {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .sso-container h1 {
        font-weight: 700;
        color: #007bff;
    }

    .sso-container p {
        font-size: 1.2rem;
        color: #6c757d;
    }


/*custom design for error*/
.card-header.bg-danger {
    background-color: #dc3545;
    color: white;
}

.text-danger {
    color: #dc3545 !important;
}

.fs-5 {
    font-size: 1.25rem;
}

a.btn-primary {
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    transition: background-color 0.3s ease;
}

    a.btn-primary:hover {
        background-color: #0056b3;
    }

/* Vertically center account panels */
.center-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

    .center-panel main {
        width: 100%;
    }