/* Finkurs Access Manager — Frontend Styles */

.fkam-access-wall {
    max-width: 520px;
    margin: 40px auto;
    padding: 0 20px;
}

.fkam-access-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.fkam-access-icon {
    color: #0f6fb2;
    margin-bottom: 16px;
}

.fkam-access-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px 0;
}

.fkam-access-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 28px 0;
    line-height: 1.5;
}

/* Form */
.fkam-form {
    text-align: left;
}

.fkam-field {
    margin-bottom: 16px;
}

.fkam-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.fkam-required {
    color: #dc2626;
}

.fkam-field input[type="text"],
.fkam-field input[type="email"],
.fkam-field input[type="tel"],
.fkam-field select,
.fkam-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #1a202c;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.fkam-field input:focus,
.fkam-field select:focus,
.fkam-field textarea:focus {
    outline: none;
    border-color: #0f6fb2;
    box-shadow: 0 0 0 3px rgba(15, 111, 178, 0.12);
    background: #fff;
}

.fkam-field textarea {
    min-height: 80px;
    resize: vertical;
}

/* Button */
.fkam-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 8px;
}

.fkam-btn:active {
    transform: scale(0.98);
}

.fkam-btn-primary {
    background: #0f6fb2;
    color: #fff;
}

.fkam-btn-primary:hover {
    background: #0483bf;
}

.fkam-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Error */
.fkam-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 12px;
}

/* Form Intro */
.fkam-form-intro {
    font-size: 14px;
    color: #475569;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}

/* Step Transition */
.fkam-step {
    animation: fkamFadeIn 0.3s ease;
}

@keyframes fkamFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
    .fkam-access-container {
        padding: 28px 20px;
    }

    .fkam-access-title {
        font-size: 18px;
    }
}
