@import "../common/contact-form.css";

.page-header:before {
    content: "";
    width: 40px;
    height: 40px;
    background: #000;
    position: absolute;
    right: 0;
    bottom: -40px;
}

.page-header {
    height: 200px;
    background: #000 url(../../images/page-header-backgroud.png) no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-header:after {
    content: "";
    width: 25px;
    height: 25px;
    background: #000;
    position: absolute;
    bottom: -65px;
    right: 40px;
}

.page-header h1 {
    margin: 0;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    position: relative;
    z-index: 99;
}

.page-content {
    padding: 60px 0;
}

.register-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #000;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 30px;
}

.register-type a {
    background: #fff;
    color: #000;
    text-decoration: none;
}

.register-type .active {
    background: var(--dc-primary-color);
    color: #fff;
}

@media (max-width: 576px) {
    .register-type {
        flex-direction: column;
    }

    .register-type a {
        width: 100%;
        align-items: center;
        justify-content: center;
    }
}