/*!*****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./public/assets/css/not-found.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************/
.not-found-wrapper {
    min-height: 100vh;
    background: linear-gradient(180deg, #fffaf3 0%, #fdf3e7 100%);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.not-found-icon-wrap {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: not-found-float 3s ease-in-out infinite;
}

.not-found-icon-wrap svg {
    width: 100%;
    height: 100%;
}

@keyframes not-found-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.not-found-title {
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 800;
    line-height: 1;
    margin: 0;
    background: #543349;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.unauthorized-title{
    font-size: clamp(3rem, 6vw, 4rem) !important;
}

.not-found-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #3a2a2f;
    margin: 0;
}

.not-found-text {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: #6b5b5f;
    max-width: 420px;
    line-height: 1.6;
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.btn-not-found-primary {
    background: #543349 !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(123, 30, 59, 0.25);
}

.btn-not-found-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(123, 30, 59, 0.35);
    color: #fff;
}

.btn-not-found-secondary {
    background: transparent;
    color: #7b1e3b;
    border: 1.5px solid #b8860b;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-not-found-secondary:hover {
    background: rgba(184, 134, 11, 0.08);
    transform: translateY(-2px);
    color: #7b1e3b;
}

/* Mobile */
@media (max-width: 576px) {
    .not-found-icon-wrap {
        width: 100px;
        height: 100px;
    }

    .not-found-actions {
        flex-direction: column;
        width: 100%;
        max-width: 260px;
    }

    .not-found-actions .btn {
        width: 100%;
    }
}
