@charset "UTF-8";

/* ログインページのスタイル */
body {
    background-color: #f0e8db;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: "Zen Old Mincho", serif;
}

.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.login-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
    color: #56544f;
}

.login-logo {
    margin-bottom: 30px;
}

.login-logo img {
    width: 150px;
    height: auto;
    opacity: 0.8;
}

.login-box h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #56544f;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: #666;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.6rem;
    color: #333;
    box-sizing: border-box;
}

.login-button {
    background-color: #56544f;
    color: #fff;
    padding: 14px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 20px;
    font-family: "Zen Old Mincho", serif;
}

.login-button:hover {
    background-color: #44423e;
}

.error-message {
    color: #e74c3c;
    font-size: 1.4rem;
    margin-top: 20px;
}

/* アニメーションの既存クラスを適用 */
.fadeUp {
    opacity: 0;
    transform: translateY(20px);
    transition: all ease-in-out .6s;
}
.fadeUp.on {
    opacity: 1;
    transform: translateY(0px);
    transition: all ease-in-out .6s;
    transition-delay: .2s;
}

/* レスポンシブデザイン */
@media (max-width: 600px) {
    .login-box {
        padding: 30px 20px;
    }
    .login-box h2 {
        font-size: 2.4rem;
    }
    .form-group input {
        font-size: 1.4rem;
    }
    .login-button {
        font-size: 1.6rem;
        padding: 12px 20px;
    }
}