/* 全体のスタイル */
.customerPasswordResetRequest {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9; /* 明るい背景色 */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* タイトルのスタイル */
.customerPasswordResetRequest__title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #666;
}

/* フラッシュメッセージコンテナ */
.customerPasswordResetRequest__flashMessages-container {
    margin: 10px 0;
    padding: 0;
}

/* 各フラッシュメッセージ */
.customerPasswordResetRequest__flashMessages {
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
}

/* メッセージの種類ごとのスタイル */
.customerPasswordResetRequest__flashMessages--error {
    color: red;
}

.customerPasswordResetRequest__flashMessages--success {
    color: #28a745;
}

.customerPasswordResetRequest__flashMessages--info {
    color: #6c757d;
}

/* 入力フィールドのスタイル */
.customerPasswordResetRequest__field {
    margin-bottom: 15px;
}

.customerPasswordResetRequest__label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.customerPasswordResetRequest__input {
    width: 100%;
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* ボタンのスタイル */
.customerPasswordResetRequest__button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #28a745; /* 緑色 */
    color: #fff;
    font-size: 1rem;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.customerPasswordResetRequest__button:hover {
    background-color: #218838; /* 清潔感のある緑色 */
}

/* リンクのスタイル */
.customerPasswordResetRequest__links {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: #666;
}

.customerPasswordResetRequest__link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.customerPasswordResetRequest__link:hover {
    color: #0056b3;
}

/* メディアクエリ: スマートフォン対応 */
@media (max-width: 768px) {
    .customerPasswordResetRequest {
        margin: 20px;
        padding: 10px;
    }

    .customerPasswordResetRequest__title {
        font-size: 1.5rem;
    }

    .customerPasswordResetRequest__input {
        font-size: 1rem;
        padding: 6px;
    }

    .customerPasswordResetRequest__button {
        font-size: 1rem;
        padding: 8px;
    }
}