/* css/login.css */

.login-section {
    background-color: #f0f2f5; /* セクション全体の背景色 */
    padding: 60px 0;
    min-height: calc(100vh - 120px); /* フッターとヘッダーを除いた画面の高さ */
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 450px;
    width: 100%;
    margin: 0 auto; /* 中央揃え */
    text-align: center;
}

.login-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -10px; /* form-groupのmargin-bottomを相殺 */
    margin-bottom: 25px;
    font-size: 14px;
}

.form-options input[type="checkbox"] {
    margin-right: 5px;
}

.form-options label {
    font-weight: normal;
    color: #555;
    cursor: pointer;
}

.forgot-password-link {
    color: #007bff;
}

.login-button {
    font-size: 18px;
    padding: 14px 20px;
    margin-top: 20px;
}

.register-link-container {
    margin-top: 30px;
    font-size: 15px;
    color: #555;
}

.register-link-container a {
    font-weight: bold;
    color: #007bff;
}