@charset "UTF-8";

/* ========================================
   パスワード再発行画面専用スタイル (reset_password.css)
======================================== */

/* フォームのカード（ログイン画面と同じデザイン） */
.reset-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

/* 入力欄のグループ */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-sizing: border-box; 
    font-size: 16px;
    font-family: inherit; /* 生年月日のフォントを統一 */
}

.input-group input:focus {
    outline: none;
    border-color: #004097;
    box-shadow: 0 0 0 2px rgba(0, 64, 151, 0.2);
}

/* 再発行ボタン（ログインボタンと同じ色・デザイン） */
.submit-btn {
    width: 100%;
    background-color: #004097;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #002e6e;
}

/* 戻るリンク */
.back-link-wrapper {
    text-align: center;
    margin-top: 20px;
}

.back-link {
    color: #004097;
    text-decoration: none;
    font-size: 13px;
}

.back-link:hover {
    text-decoration: underline;
}