h2 {
    margin: 0;
    font-size: 24px;
    margin-bottom: 8px;
}

.password-section {
    width: 736px;
    margin: 80px auto;
    display: block;
    background-color: #FFFFFF;
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
}

.password-section .container {
    padding: 48px;
}

.password-section p {
    margin: 0 0 32px 0;
    font-size: 12px;
}

.password-form {
    margin-bottom: 16px;
    font-size: 16px;
}

.password-form input {
    display: block;
    width: -webkit-fill-available;
    height: 40px;
    border: none;
    background-color: #F6F6F6;
    border-radius: 4px;
    padding: 0 12px;
}

.btn-with-icon {
    position: relative;
}

.btn-with-icon .btn {
    width: inherit;
    margin: 0 auto;
}

.btn-with-icon img {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
}
.password-form a {
    text-align: center;
    display: block;
    margin-top: 12px;
    color: #0096E5;
    font-size: 14px;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    gap: 12px;
}

.form-actions .btn{
    margin: 0;
    width: 272px;
    height: 40px;
}

.footer {
    width: 100%;
    background-color: #eeeeee;
}

.footer .container {
    background-color: #D4D4D4;
    max-width: none;
}

.character {
    width: 85px;
    height: 121px;
    margin-bottom: -6px;
    margin-left: 85%;
    max-width: 370px;
}

/* tb Size */
@media screen and (max-width: 834px) {
    .password-section {
        width: 90%;
        height: auto;
    }

    .form-actions .btn{
        width: 250px;
    }
}

/* sp Size */
@media screen and (max-width: 640px) {
    main {
        padding: 48px 24px;
         flex-grow: inherit;
    }

    .password-section {
        margin: 0 auto 24px auto;
        width: 100%;
    }

    .password-section .container {
        padding: 32px;
    }

    .form-actions {
        flex-direction: column;
        margin-top: 32px;
    }

    .form-actions .btn {
        width: 100%;
        margin-top: 0;
    }
    
    .character {
        margin-left: 75%;
    }

    .footer {
        width: 100%;
        margin-top: 0;
    }
}
