/*
 * forgot_password.css
 * パスワードリセット依頼ページ用スタイル
 */

body {
    background: #fce4ec;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.reset-container {
    width: 100%;
    max-width: 420px;
    padding: 15px;
}

.reset-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.reset-logo {
    text-align: center;
    margin-bottom: 30px;
}

.reset-logo i {
    font-size: 48px;
    color: #f06292;
    margin-bottom: 15px;
}

.reset-logo h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.reset-logo p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: #f06292;
    box-shadow: 0 0 0 3px rgba(236, 64, 122, 0.1);
}

.input-group-text {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-right: none;
    color: #666;
}

.input-group .form-control {
    border-left: none;
}

.btn-reset {
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: all 0.2s;
}

.btn-reset:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(236, 64, 122, 0.3);
}

.alert {
    border-radius: 8px;
    border: none;
}

.alert-danger {
    background: #ffebee;
    color: #c62828;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.back-link a:hover {
    color: #f06292;
}

.footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.help-text {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #666;
}
