/* @format */
.din {
    font-family: 'din-2014', sans-serif;
}
.is-blue {
    color: #5e83ae;
}

.login-hero {
    height: 36vh;
    .mask {
        background-color: #e5ebf2;
    }
}
.login-section {
    background-color: #e5ebf2;
    .inner-min {
        max-width: 900px;
    }
    .p-home-entry__merit {
        padding: 0;
        width: 100%;
        background-color: transparent;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
        dl {
            padding: 0;
            width: 100%;
            &:nth-of-type(2) {
                background-color: transparent;
                a {
                    max-width: 100%;
                    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
                }
            }
            dt,
            dd {
                padding: 0;
            }
            dt {
                margin-bottom: 16px;
                padding-bottom: 0.3em;
                border-bottom: 0.5px solid var(--color-bl);
            }
            dd {
                display: block;
                &:nth-child(3) {
                    margin-bottom: 16px;
                }
                form {
                    .error-text {
                        text-align: left;
                    }
                }
            }
        }
        figure {
            margin: 0;
            padding: 0;
            height: fit-content;
            border-bottom: none;
        }
    }
}
.login-heading {
    margin-bottom: 2em;
    font-size: clamp(2.4rem, 3.6vw, 3.6rem);
    line-height: 1.1;
    .din {
        font-size: 2rem;
        font-weight: 500;
        letter-spacing: 0.3rem;
    }
}
.login-contents {
    padding-block: 20px;
    flex-direction: column;
    justify-content: space-between;
    gap: 80px;
}
@media screen and (max-width: 767px) {
    .login-hero {
        height: 18vh;
    }
    .login-heading {
        text-align: center;
        line-height: 1.5;
    }
    .login-section {
        padding-top: 40px;
        .p-home-entry__merit {
            width: 90%;
            grid-template-columns: auto;
            figure {
                display: none;
            }
            dl {
                dt {
                    text-align: center;
                }
                dd {
                    text-align: center;
                }
            }
        }
    }
}
