/* QAS/static/css/login.css */
body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f5f5f5; /* 他のページの背景色に合わせる */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.login-logo img {
    width: 150px;
    margin-bottom: 1rem;
}

h2 {
    margin-bottom: 1.5rem;
    color: #333333; /* 他のページのテキストカラーに合わせる */
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333333; /* 他のページのテキストカラーに合わせる */
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group input[type="checkbox"] {
    margin-right: 0.5rem;
}

.login-button {
    background-color: #2b6aa0; /* 他のページのボタンカラーに合わせる */
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

.login-button:hover {
    background-color: #0056b3; /* 他のページのホバーカラーに合わせる */
}

.form-links {
    margin-top: 1rem;
}

.form-links a {
    color: #2b6aa0; /* 他のページのリンクカラーに合わせる */
    text-decoration: none;
}

.form-links a:hover {
    text-decoration: underline;
}

.keep-group {
    margin-bottom: 1rem;
    text-align: left;
    white-space: nowrap;
}

input[type="email"] {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1.2em;
}


.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #2b6aa0;
    color: #f0f0f0;
    padding: 10px 0;
  }

  .footer a {
    color: #f0f0f0;
    text-decoration: none;
    margin: 10px;
  }

  .recaptcha-field {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 1024px) {
    /* ヘッダーの幅調整 */
    .login-container {
        max-width: 90%;
        width: auto;
    }
}