/* General style */
* {
    margin: 0;
    padding: 0;
}

span a:link,
span a:visited {
    color: #4c4c4c;
    text-decoration: underline;
    cursor: pointer;
    border-bottom: none;
    text-underline-offset: 2px;
}

/* Contact validation required parking page style */
.contact-not-validated-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FAFAFA;
    font-family: 'Saira Semi Condensed', sans-serif;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    background-color: #F2F2F2;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 140px;
}

.body-content {
    max-width: 670px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    background-color: #FFF;
    margin-bottom: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    img {
        margin-bottom: 40px;
    }

    h1, h2, h3 {
        margin-bottom: 30px;
    }

    h1 {
        font-size: 42px;
        font-weight: bold;
        color: #333;
        line-height: 0.67;
        text-align: center;
    }

    h2 {
        padding-bottom: unset;
    }

    h3 {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        line-height: 0.75;

    }

    .domain-name {
        font-size: 28px;
        font-weight: 500;
        color: #3EC1E6;
        line-height: 0.79;
        text-decoration: none;
        word-break: break-all;
        text-align: center;
    }

    .contact-not-validated-description {
        font-size: 16px;
        line-height: 1.13;
        text-align: center;
        font-weight: 400;

        p {
            margin-bottom: 19px;
            line-height: 19px;
        }

        .regulation-info {
            margin-bottom: 28px;

            .links a {
                text-decoration: underline;
                cursor: pointer;
                border-bottom: none;
                font-weight: 500;
                text-underline-offset: 2px;
            }
        }

        .log-in > a {
            display: flex;
            width: fit-content;
            margin: 0 auto;
            text-decoration: none;
            background-color: #3EC1E6;
            padding: 12px 12px;
            border-radius: 8px;
            color: #FFF;
        }
    }
}

@media only screen and (max-width : 570px) {
    .body-content {
        padding: 20px;

        h1 {
            font-size: 38px;
        }
    }
}

@media only screen and (max-width : 959px) {
    .body-content {
        margin: 0 10px 20px;
    }
}