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;
/*    background-image: radial-gradient(white 0%, white 65%, LightGreen 120%);*/
}

.kt-form-list-item {
    width: 500px;
    padding: 16px 32px;
    display: inline-block;
    border: 2px solid #04AA6D;
    border-radius: 8px;
    background-color: white;
    color: black;
    font-size: 20px;
    font-weight: 600;
    font-family: "Segoe UI", sans-serif;
    text-align: center;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}
    .kt-form-list-item:hover {
        background-color: #04AA6D;
        color: white;
    }

.instruction {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    line-height: 1.6;
}

    .instruction p {
        margin-bottom: 1rem;
    }

    .instruction .instruction-title {
        font-weight: 600;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .instruction ul {
        list-style: none;
        padding-left: 1.25rem;
    }

        .instruction ul li {
            margin-bottom: 0.75rem;
        }

.kt-survey-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.kt-survey-header h1 {
    font-weight: 600;
    margin-bottom: 5px;
}

.kt-survey-subtitle {
    color: #6c757d;
    margin-bottom: 30px;
}

.kt-form-questions {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.kt-survey-question {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.kt-question-number {
    font-weight: 600;
    font-size: 18px;
    color: #0d6efd;
}

.kt-question-content {
    flex: 1;
}

.kt-question-label {
    display: block;
    font-weight: 500;
    margin-bottom: 12px;
}

.kt-modern-input {
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
}

    .kt-modern-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    }

.kt-modern-radio {
    margin-bottom: 10px;
}

    .kt-modern-radio input[type="radio"] {
        margin-right: 8px;
    }

    .kt-modern-radio label {
        cursor: pointer;
    }

.kt-survey-actions {
    margin-top: 30px;
}

.kt-form-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #0d6efd, #4dabf7);
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
}

    .kt-form-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
    }