/* カード全体 */
.login-container {
    width: 100%;
    max-width: 360px;
    margin: 80px auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden; /* ←重要（角丸を一体化） */
}

/* ヘッダー（ロゴ部分） */
.card-header {
    background: #f7f9fc;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.card-header .fas {
	color: #2b6cb0;
	font-size: 150%;
}

/* ロゴ */
.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2b6cb0;
}

.logo span {
    color: #1a1a1a;
    font-weight: 500;
}

/* 本体 */
.card-body {
    padding: 30px;
}

/* 既存スタイル（必要なら） */
.login-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 18px;
}

.input-group input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.login-button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: #2b6cb0;
    color: #fff;
    font-weight: 600;
}

.forgot-password {
    text-align: right;
    margin-top: 12px;
}

.forgot-password a {
    font-size: 13px;
    color: #2b6cb0;
    text-decoration: none;
}

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

/* パスワード入力ラッパー */
.password-group {
    position: relative;
}

/* ボタン */
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #888;
}

/* 入力に余白を確保 */
.password-group input {
    padding-right: 40px;
}
