*,
*::before,
*::after {
    box-sizing: border-box;
}
.banner{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    z-index: 9999;
    width: 100%;
    padding: 10px 0 10px 10px;
}
h3.logo {
    display: block;
    color: #7A7878;
    text-align: center;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 27px;
    margin-top: 10px;
    margin-left: 20%;
    font-weight: 400;
}

h3.logo span {
    color: whitesmoke;
    font-weight: 600;
}
button {
    outline: none;
}

.form-wrapper {
    color: black;
}

.forms-section {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-title {
    font-size: 32px;
    letter-spacing: 1px;
    color: #fff;
}

.forms {
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
}


.form fieldset {
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
}

.input-block {
    margin-bottom: 20px;
}

.input-block label {
    font-size: 14px;
    /*color: #a1b4b4;*/
    color: black
}

.input-block input {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 16px;
    line-height: 40px;
    color: #3b4465;
    background: #eef9fe;
    border: 1px solid #cddbef;
    border-radius: 2px;
}


.form {
    background: white;
    overflow: hidden;
    width: 320px;
    margin-top: 50px;
    padding: 30px 25px;
    border-radius: 5px;
    transform-origin: top;
}

.form [type='submit'] {
    display: block;
    min-width: 120px;
    margin: 10px auto 10px;
    font-size: 18px;
    line-height: 40px;
    border-radius: 25px;
    border: none;
}

.form [type='submit']:hover {
    background: var(--action-color);
}