/* パスワードページのスタイル */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-attachment: fixed;
}

.password-container {
    width: 100%;
    max-width: 980px;
    padding: 20px;
}

.password-card {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.password-card h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
    letter-spacing: 2px;
}

.password-card p {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

#passwordForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#passwordInput {
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

#passwordInput:focus {
    outline: none;
    border-color: #8b7355;
}

button[type="submit"] {
    padding: 12px 30px;
    font-size: 16px;
    background: #8b7355;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
}

button[type="submit"]:hover {
    background: #6b5344;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.error-message.show {
    display: block;
}

.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.login-media {
    display: grid;
    gap: 18px;
}

.login-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.login-services ul {
    list-style: none;
    display: grid;
    gap: 8px;
    color: #4a4a4a;
    font-size: 14px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b7355;
    margin-bottom: 10px;
}

.login-form p {
    margin-bottom: 20px;
}

.login-contact {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
    color: #4a4a4a;
    font-size: 14px;
}

.login-contact .note {
    font-size: 12px;
    color: #7a7a7a;
    margin-top: 8px;
}

.login-cg {
    margin-top: 28px;
}

.login-cg-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

.cg-caption {
    font-size: 12px;
    color: #7a7a7a;
    margin-top: 8px;
    letter-spacing: 1px;
}

/* レスポンシブ */
@media (max-width: 480px) {
    .password-card {
        padding: 30px 20px;
    }

    .password-card h1 {
        font-size: 24px;
    }

    .password-card p {
        font-size: 12px;
    }

    .login-grid {
        grid-template-columns: 1fr;
    }

    .login-photo {
        height: 240px;
    }

    .login-cg-image {
        height: 180px;
    }
}
