:root {
    --UA-color-button: #005AEF;
    --UA-color-button-hover: #0045b8;
    --UA-Colours-Dark-blue: #002447;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
#cotizacion {
    background: transparent;
}

html {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    overflow: hidden;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-text);
    background: linear-gradient( to bottom, #e8f2ff 0%, #f8fbff 40%, #e4f4ff 100% );
    background-repeat: no-repeat;
    background-size: cover;
}

.page {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    box-sizing: border-box;
}

.error-card {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    box-shadow: none;
}

.error-illustration {
    margin-bottom: 24px;
}

    .error-illustration img {
        max-width: 360px;
        width: 100%;
        height: auto;
    }

.error-content {
    max-width: 100vh;
}

    .error-content h1 {
        margin: 0 0 12px;
        font-size: 40px;
        font-weight: 600;
    }

.error-text {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 300;
    line-height: normal;
}

.primary-button {
    display: flex;
    padding: 10px 50px;
    justify-content: center;
    align-items: center;
    margin: auto;
    gap: 10px;
    border-radius: 100px;
    background: var(--UA-color-button);
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
}

    .primary-button:hover {
        background-color: var(--UA-color-button-hover);
        transform: translateY(-1px);
    }

    .primary-button:active {
        transform: translateY(0);
        box-shadow: 0 6px 15px rgba(0, 90, 239, 0.45);
    }

@media (min-width: 1024px) {

    .page {
        padding: 0 16px 120px 16px;
    }

    .error-content {
        max-width: 920px;
    }

        .error-content .primary-button {
            width: 420px;
        }

        .error-content h1 {
            font-size: 40px;
        }

    .error-text {
        font-size: 24px;
    }
}
