html {
    min-height: 100vh;
}

body {
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hawk-main {
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.hawk-logos {
    display: flex;
    flex-direction: row;
    gap: 15px;
    height: 85px
}

.hawk-logos-logo {
    height: 100%;
    display: inline-block;
}

.hawk-login-wrap {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    flex-grow: 1;
}

.hawk-login-container {
    display: block;
    flex-grow: 0;
    background-color: var(--clr-primary-white);
    padding: 40px;
    border-radius: 40px;
    width: 450px;
}

.hawk-login-button {
    display: flex;
    justify-content: flex-end;
}

.card-pf {
    max-height: 60vh;
    overflow-y: auto;
    position: relative;
    padding: 5px;
}

@media (max-width: 1300px){
    .hawk-logos {
        height: 60px;
    }
}

@media (max-width: 600px){
    .hawk-main {
        padding: 30px;
    }

    .hawk-login-container {
        position: relative;
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 500px){
    .hawk-logos {
        height: 50px;
    }

    .hawk-main {
        padding: 25px;
    }

    .hawk-login-container {
        margin-left: -25px;
        margin-right: -25px;
        margin-bottom: -25px;
        width: calc(100% + 50px);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

.hawk-custom-element ol {
    margin-left: 20px;
}
.hawk-custom-element ol ol {
    margin-left: 0;
}

.hawk-custom-element ol > li {
    margin-bottom: 10px;
}

.hawk-custom-element ol > li ol,ul {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 20px;
    list-style: square;
}

.hawk-custom-element li p:not(:last-child):not(:empty) {
    margin-bottom: 5px
}
