.fc-input {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #334155;
    border-radius: 1rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: all .18s ease;
}

.fc-input:focus {
    outline: none;
    border-color: #818cf8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    border-radius: 1rem;
    font-weight: 800;
    transition: all .18s ease;
}

.fc-btn:hover {
    transform: translateY(-1px);
}

.fc-btn:disabled,
.fc-btn[disabled] {
    transform: none;
    cursor: not-allowed;
    opacity: .72;
}

.fc-btn-primary {
    background: #4f46e5;
    color: #fff;
    box-shadow: 0 18px 35px rgba(99, 102, 241, 0.26);
}

.fc-btn-primary:hover {
    background: #4338ca;
}

.fc-btn-success {
    background: #059669;
    color: #fff;
    box-shadow: 0 18px 35px rgba(16, 185, 129, 0.24);
}

.fc-btn-success:hover {
    background: #047857;
}

.fc-btn-light {
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.fc-btn-light:hover {
    background: #fff;
    border-color: #cbd5e1;
}

.fc-btn-danger {
    background: #fff;
    color: #b91c1c;
    border: 1px solid #fecaca;
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.08);
}

.fc-btn-danger:hover {
    background: #fef2f2;
}

.fc-pwd-wrap {
    position: relative;
}

.fc-pwd-wrap input {
    padding-right: 54px !important;
}

.fc-pwd-eye {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 9999px;
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .18s ease;
}

.fc-pwd-eye:hover {
    background: rgba(99, 102, 241, 0.16);
    color: #4338ca;
}
