@charset "utf-8";

.reset-password-wrap {
    width: 90vw;
    margin: 30px auto;
    padding: 40px 20px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

h2 {
    text-align: center;
    font-weight: 600;
}

.reset-password-description {
    margin: 30px auto;
    text-align: center;
}

.reset-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

label::before {
    content: "";
    /* 擬似要素を表示 */
    display: inline-block;
    width: 10px;
    /* 縦線の太さ */
    height: 1.2em;
    /* 縦線の高さ */
    background-color: #db4141;
    /* 線の色 */
    margin-right: 7px;
    /* ラベルと縦線の間の余白 */
}

label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
}

input {
    width: 100%;
    height: 50px;
}

.reset-password-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.reset-password-btn {
    width: 65%;
    height: 60px;
    color: white;
    border: none;
    border-radius: 10px;
    background-color: #0d6efd;
}

@media(min-width:768px) {
    .reset-password-wrap {
        width: 55vw;
        margin: 60px auto;
    }

    .reset-password-btn {
        width: 50%;
    }
}