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;
}

/*moje*/
body {
    font-family: Arial;
    background: #f5f7fa;
    transition: background 0.3s ease;
}

/* formularz */
.form-card {
    background: white;
    padding: 20px;
    margin: 40px auto;
    width: 400px;
    border-radius: 12px;
}

/* pola */
.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 8px;
}

/* kolorowe kółka */
.color-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.color-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
}

    /* konkretne kolory */
    .color-circle:nth-child(1) {
        background: #ff6b6b;
    }

    .color-circle:nth-child(2) {
        background: #4ecdc4;
    }

    .color-circle:nth-child(3) {
        background: #45b7d1;
    }

    .color-circle:nth-child(4) {
        background: #f7b731;
    }

    .color-circle:nth-child(5) {
        background: #a55eea;
    }

    .color-circle:nth-child(6) {
        background: #2ecc71;
    }

    /* aktywny */
    .color-circle.active {
        border: 3px solid black;
    }