@charset 'UTF-8';

/* ============================
   全体背景（明るいグラデーション）
============================ */
body {
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    min-height: 100vh;
}

/* ============================
   ログインカード（明るい白ベース）
============================ */
.login-all {
    background: #ffffff;
    border-radius: 14px;
    width: 360px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid #f0f0f0;
}

/* ============================
   ロゴ部分
============================ */
.login-top p {
    padding: 30px 0 5px 0;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    color: #333;
    letter-spacing: 1px;
}

/* ============================
   入力欄
============================ */
.error-message p {
    text-align: center;
}

.login-contents {
    padding-inline: 30px;
}

.login-contents p {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.login-contents input {
    height: 42px;
    width: calc(100% - 26px);
    font-size: 15px;
    border: 1px solid #d0d7de;
    border-radius: 8px;
    margin-bottom: 10px;
    padding-inline: 12px;
    background: #f9f9f9;
    color: #333;
    transition: 0.2s;
}

.login-contents input:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 6px rgba(255, 152, 0, 0.4);
}

/* ============================
   パスワードアイコン
============================ */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 20px;
    cursor: pointer;
}

.toggle-password svg {
    stroke: #777;
    transition: 0.2s;
}

.toggle-password:hover svg {
    stroke: #333;
}

/* ============================
   ボタン
============================ */
.login-buttons {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-buttons input,
.login-buttons a,
.next-btn {
    margin: 0 30px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    padding: 12px;
    text-align: center;
    transition: 0.25s;
}

/* ログインボタン */
.login-btn,
.next-btn {
    background: linear-gradient(135deg, #ffb74d, #ff9800);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.35);
}

.login-btn:hover,
.next-btn:hover {
    background: linear-gradient(135deg, #ffcc80, #ffa726);
    transform: translateY(-2px);
}

.next-btn {
    width: calc(100% - 58px);
    margin-block: 30px;
}

/* 新規登録 */
.new-add {
    background: #eceff1;
    color: #333 !important;
}

.new-add:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* ============================
   パスワード忘れ
============================ */
.fg-pass {
    padding: 15px 30px 25px 30px;
    text-align: center;
}

.fg-pass p {
    font-size: 13px;
    color: #666;
    transition: 0.2s;
}

.fg-pass p:hover {
    color: #333;
}

/* ============================
   Googleログイン
============================ */
.google-login-all {
    margin-top: 10px;
    padding-inline: 30px;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #333;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    border: 1px solid #ddd;
    transition: 0.25s;
}

.google-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.google-btn img {
    width: 20px;
}

/* ============================
   日本語ラベル非表示
============================ */
.mail-ja,
.pass-ja {
    display: none;
}

.login-btn-en,
.new-add-en,
.fg-pass-en {
    display: none;
}