@charset='utf-8';


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

        /* --- NOAA Design Tokens & Base Styles --- */
        :root {
            --brand-red: #ca1341;
            --brand-red-hover: #b01038;
            --bg-light: #fdfdfd;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --card-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
            --glass-bg: rgba(255, 255, 255, 0.8);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background: var(--bg-light);
            background-image: 
                radial-gradient(circle at 0% 0%, rgba(202, 19, 65, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 100% 100%, rgba(202, 19, 65, 0.04) 0%, transparent 40%);
            color: var(--text-main);
            /* min-height: 100vh; */
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 1.5rem;
        }
        main {
            flex: unset;
        }

        /* --- Components --- */
        .noaa-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 1);
            border-radius: 32px;
            box-shadow: var(--card-shadow);
            width: 100%;
            max-width: 420px;
            padding: 2.5rem 2rem;
        }

        .brand-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .brand-logo {
            color: var(--brand-red);
            font-size: 3.25rem;
            font-weight: 900;
            line-height: 1;
        }

        .brand-subtitle {
            display: block;
            margin-top: 1.0rem;
            font-size: 1.25rem;
            font-weight: 900;
            color: var(--text-main);
            letter-spacing: 0.15em;
        }

        .input-group {
            margin-bottom: 1.25rem;
            width: 100%;
        }

        .input-label {
            display: block;
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
        }

        .input-field {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 14px;
            color: var(--text-main);
            width: 100%;
            padding: 0.875rem 1rem;
            font-size: 0.875rem;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
        }

        .input-field:focus {
            border-color: var(--brand-red);
            box-shadow: 0 0 0 4px rgba(202, 19, 65, 0.08);
        }

        /* Language Selector */
        .lang-container {
            display: flex;
            background-color: #f1f5f9;
            padding: 0.25rem;
            border-radius: 0.75rem;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }

        .lang-btn {
            flex: 1;
            padding-top: 0.375rem;
            padding-bottom: 0.375rem;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            background: transparent;
            color: var(--text-muted);
        }

        .lang-btn.active {
            background-color: #ffffff;
            color: var(--brand-red);
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .btn-primary {
            background-color: var(--brand-red);
            color: white;
            padding: 1rem;
            border-radius: 1rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(202, 19, 65, 0.2);
            width: 100%;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size:18px;
            margin:auto;
            margin-top:10px;
            text-align:center;
            text-decoration:none;
        }
        .btn-primary:hover {
            background-color: var(--brand-red-hover);
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(202, 19, 65, 0.3);
        }

        .btn-back {
            background-color: #fff;
            color: var(--brand-red);
            padding: 1rem;
            border-radius: 1rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(202, 19, 65, 0.2);
            width: 100%;
            border: none;
            cursor: pointer;
            font-family: inherit;
	font-size:18px;
	margin:auto;
	margin-top:20px;
	text-align:center;
	text-decoration:none;
        }
        .btn-back:hover {
            background-color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(202, 19, 65, 0.3);
        }

        .separator {
            border-top: 1px solid #f1f5f9;
            margin: 2rem 0 1.5rem;
            padding-top: 1.5rem;
            text-align: center;
        }

        .forgot-link {
            color: var(--brand-red);
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .forgot-link:hover {
            opacity: 0.7;
        }

        /* Footer */
        .footer-nav {
            margin-top: 1rem;
            display: flex;
            gap: 1.25rem;
            justify-content: center;
        }

        .footer-nav a {
            font-size: 0.8rem;
            font-weight: 600;
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-nav a:hover {
            color: var(--brand-red);
        }

        .copyright {
            margin-top: 0.5rem;
            font-size: 11px;
            color: #94a3b8;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 440px) {
            .noaa-card {
                border-radius: 0;
                /*min-height: 100vh;*/
                max-width: none;
                border: none;
            }
            body {
                padding: 0;
            }
        }

        #login_logo {
            width: 225px;
        }



/* =1 logout
------------------------------------------------------------ */

        /* Logout Content Styles */
        .logout-message-area {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .logout-title {
		padding:15px 0px 15px 0px;
		border-top:solid 1px var(--brand-red);
		border-bottom:solid 1px var(--brand-red);
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--brand-red);
            margin-bottom: 1.5rem;
        }

        .logout-text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--text-main);
            font-weight: 500;
        }







