/* 認証ページ共通スタイル - auth_common.css */

/* 基本スタイル */
* {
    font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

button {
    display: block;
}

.btn-primary {
    display: block;
}

/* 認証ページ共通スタイル */
.auth-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.auth-card {
    background: white;
    padding: 40px 40px 100px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.auth-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.auth-logo {
    margin-bottom: 30px;
}

.auth-logo-image {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 20px auto;
}

.auth-logo h1 {
    font-size: 36px;
    font-weight: 300;
    color: #091747;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.auth-logo .kako {
    color: #fab515;
}

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

.auth-title {
    font-size: 18px;
    font-weight: 500;
    color: #091747;
    margin-bottom: 20px;
}

.auth-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.auth-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* アイコン */
.success-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .auth-container {
        padding: 10px;
    }

    .auth-card {
        padding: 30px 20px;
        max-width: 100%;
    }

    .auth-logo h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 20px 15px;
    }

    .auth-logo h1 {
        font-size: 24px;
    }
}