@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body,
form {
    margin: 0;
    background: #FFF;
}

.page-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Layout */
.center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding: 1rem;
    width: min(92vw, 500px);
    margin-inline: auto;
    gap: 36px;

}
.not-found-image {
    max-width: min(100vw, 360px);
    height: auto;
    object-fit: contain;
    display: block;
}

.primary-text {
    color: #333;
    text-align: center;
    font-family: "Poppins", "Albert Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.secondary-text {
    color: #333;
    font-family: "Poppins", "Albert Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.go-back-button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0F5B8D;
    font-family: "Albert Sans", sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid #0F5B8D;
    background: #FFFFFF;
}

.go-back-button:hover {
    border: 1px solid #0F5B8D;
    background: #0F5B8D;
    color: #FFF;
}

.go-back-button:active {
    border: 1px solid #093451;
    background: #093451;
    color: #FFF;
}