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;
}

.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;
}

/* Notification System - Fundero Brand */
.notification {
    position: relative;
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.notification-icon-wrapper {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.notification-icon {
    width: 18px;
    height: 18px;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-text {
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
}

.notification-text strong {
    font-weight: 600;
}

.notification-messages {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.notification-message {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Error Notification - Fundero Soft Pink */
.notification-error {
    background: linear-gradient(135deg, #fdf7f9 0%, #fcf2f6 100%);
    border: 1px solid rgba(238, 194, 216, 0.3);
    box-shadow:
        0 4px 20px rgba(238, 194, 216, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.notification-error::before {
    background: linear-gradient(90deg, #EEC2D8 0%, #e8b0ca 50%, #EEC2D8 100%);
}

.notification-error .notification-icon-wrapper {
    background: linear-gradient(135deg, #fce8f1 0%, #f9dde9 100%);
    box-shadow:
        0 2px 8px rgba(238, 194, 216, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.notification-error .notification-icon {
    color: #d4698f;
}

.notification-error .notification-text {
    color: #8b3d5a;
}

.notification-error .notification-text strong {
    color: #a84b6d;
}

.notification-error .notification-message {
    color: #8b3d5a;
}

/* Info Notification - Fundero Lavender Light */
.notification-info {
    background: linear-gradient(135deg, #f5f2fe 0%, #ebe5fd 100%);
    border: 1px solid rgba(101, 60, 236, 0.15);
    box-shadow:
        0 4px 20px rgba(101, 60, 236, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.notification-info::before {
    background: linear-gradient(90deg, #653CEC 0%, #9278E5 50%, #653CEC 100%);
}

.notification-info .notification-icon-wrapper {
    background: linear-gradient(135deg, #e5dcfc 0%, #d4c7f9 100%);
    box-shadow:
        0 2px 8px rgba(101, 60, 236, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.notification-info .notification-icon {
    color: #653CEC;
}

.notification-info .notification-text {
    color: #4c2d94;
}

.notification-info .notification-text strong {
    color: #653CEC;
}

/* Success Notification - Fundero Lime Green */
.notification-success {
    background: linear-gradient(135deg, #fafef0 0%, #f5fce4 100%);
    border: 1px solid rgba(199, 244, 105, 0.3);
    box-shadow:
        0 4px 20px rgba(199, 244, 105, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.notification-success::before {
    background: linear-gradient(90deg, #C7F469 0%, #b3e04e 50%, #C7F469 100%);
}

.notification-success .notification-icon-wrapper {
    background: linear-gradient(135deg, #f0fac8 0%, #e8f5b3 100%);
    box-shadow:
        0 2px 8px rgba(199, 244, 105, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.notification-success .notification-icon {
    color: #7a9a29;
}

.notification-success .notification-text {
    color: #4a5e1a;
}

.notification-success .notification-text strong {
    color: #5f7a1f;
}

.notification-success .notification-message {
    color: #4a5e1a;
}

/* Warning Notification - Fundero Warm Beige */
.notification-warning {
    background: linear-gradient(135deg, #fef9f3 0%, #fdf5eb 100%);
    border: 1px solid rgba(236, 192, 149, 0.3);
    box-shadow:
        0 4px 20px rgba(236, 192, 149, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.notification-warning::before {
    background: linear-gradient(90deg, #ECC095 0%, #e5ad7c 50%, #ECC095 100%);
}

.notification-warning .notification-icon-wrapper {
    background: linear-gradient(135deg, #fcecd9 0%, #f9e3c7 100%);
    box-shadow:
        0 2px 8px rgba(236, 192, 149, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.notification-warning .notification-icon {
    color: #b8762d;
}

.notification-warning .notification-text {
    color: #7a4e1a;
}

.notification-warning .notification-text strong {
    color: #996322;
}

.notification-warning .notification-message {
    color: #7a4e1a;
}