@charset "UTF-8";
/* CSS Document */

/* General styles for the body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container to center the form */
.login-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
	
}

/* Heading style */
h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}
.login-form{
	width:100%;
	box-sizing: border-box;
	
}


/* Form Group Styles */
.form-group {
	width:100%;
	height:auto;
	line-height: 2em;
	margin:5px 0;
}

label {
	width:100%;
	height:auto;
    font-size: 14px;
	box-sizing: border-box;
    color: #555;
    margin-bottom: 5px; /* 適切な余白を確保 */
}


.input-field {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.input-field:focus {
    border-color: #0066cc;
    outline: none;
}

/* Submit Button Style */
.submit-button {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #005bb5;
}

/* Responsive Styles */
@media (max-width: 500px) {
    .login-container {
        width: 90%;
    }
}


/*  アカウントがまだな人向け  */
/* Styles for the registration link */
.register-link {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.register-link a {
    color: #0066cc;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}



/*  team_login */

/* 全体のスタイル */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* ログインフォーム全体 */
form {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* フォームのラベル */
form label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    text-align: left;
}

/* 入力フィールド */
form input[type="text"],
form input[type="password"] {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #dcdfe6;
    border-radius: 5px;
    font-size: 14px;
    color: #495057;
    box-sizing: border-box;
}

/* フォーカス時の入力フィールド */
form input[type="text"]:focus,
form input[type="password"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

/* ボタン */
form button {
    width: 100%;
    padding: 10px 15px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* ボタンのホバー時 */
form button:hover {
    background-color: #0056b3;
}

/* フォームのヘッダー */
form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333333;
    font-weight: bold;
}

/* エラーメッセージ */
.error-message {
    color: #ff4d4f;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    form {
        padding: 15px 20px;
    }

    form h2 {
        font-size: 20px;
    }

    form input[type="text"],
    form input[type="password"] {
        font-size: 14px;
    }

    form button {
        font-size: 14px;
    }
}
