/* =========================================
   RESET
   ========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    background: #F3F4FC;
    color: #333333;

    font-family: 'neue-haas-grotesk-text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 105px;

    background: #ffffff;

    border-bottom: 1px solid #dddddd;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, 0.12);

    z-index: 1000;
}

.header-inner {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;

    padding: 0 24px;
}

.main-logo {
    display: block;

    width: 200px;
    height: 90px;
    object-fit: contain;
}

.account {
    margin-left: 12%;
    margin-right: auto;

    padding: 6px 16px;

    width: 150px;
    height: auto;

    border: 1px solid #bdbdbd;
    border-radius: 4px;

    background: #872878;
    color: #ffffff;

    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.account h1 {
    margin: 0;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 400;
    text-align: left;
}

/* =========================================
   PAGE
   ========================================= */

.dinefaktura {
    width: 100%;
    max-width: 430px;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.dinefaktura h1 {
    margin: 0px 10px 0px;
    text-align: left;
    font-size: 25px;
    font-weight: 550;
    line-height: 1.3;
}

.page-content {
    width: 100%;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 140px 12px 40px;
}


/* =========================================
   VERIFICATION CARD
   ========================================= */

.verification-card {
    width: 100%;
    max-width: 430px;

    padding: 32px 25px 30px;

    background: #ffffff;

    border: 1px solid #dddddd;
    border-radius: 5px;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, 0.12);
}


/* =========================================
   TEXT
   ========================================= */

.verification-card h1 {
    margin: 0 0 12px;

    text-align: left;

    font-size: 25px;
    font-weight: 550;
    line-height: 1.3;
}

.description {
    margin: 0 0 25px;

    text-align: center;

    font-size: 18px;
    line-height: 1.5;
}


/* =========================================
   FORM
   ========================================= */

.verification-form {
    width: 100%;
}

.verification-form label {
    display: block;

    margin-bottom: 27px;

    font-size: 16px;
    font-weight: 200;
}

.verification-form input {
    display: block;

    width: 100%;
    height: 56px;

    padding: 0 16px;

    border: 1px solid #bdbdbd;
    border-radius: 4px;

    background: #ffffff;

    color: #333333;

    font-family: inherit;
    font-size: 16px;

    text-align: center;

    outline: none;
}

.verification-form input:focus {
    border-color: #872878;

    box-shadow:
        0 0 0 2px rgba(135, 40, 120, 0.12);
}


/* =========================================
   BUTTON
   ========================================= */

.continue-button {
    display: block;

    width: 100%;
    height: 54px;

    margin-top: 20px;

    padding: 0 20px;

    border: 0;
    border-radius: 4px;

    background: #872878;
    color: #ffffff;

    font-family: inherit;
    font-size: 17px;
    font-weight: 400;

    cursor: pointer;
}

.continue-button:hover {
    background: #742168;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 480px) {

    .site-header {
        height: 100px;
    }

    .header-inner {
        padding: 0 18px;
    }

    .main-logo {
        width: 180px;
        height: 80px;
    }

    .page-content {
        padding-top: 130px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .verification-card {
        padding: 28px 20px 24px;
    }

    .verification-card h1 {
        font-size: 23px;
    }

    .description {
        font-size: 14px;
    }
}


/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 380px) {

    .site-header {
        height: 90px;
    }

    .main-logo {
        width: 160px;
        height: 70px;
    }

    .page-content {
        padding-top: 120px;
    }

    .verification-card {
        padding: 25px 16px 22px;
    }

    .verification-card h1 {
        font-size: 21px;
    }

    .account h1 {
    font-size: 12px;
    }
}