body {
    width: 1200px;
    font-family: Arial, sans-serif;
    background-color: aliceblue;
    margin: 0 auto; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column; 
}

.container {
    background-color: #f2f5f6;
    width: 600px; 
    height:370px;
    border:grey solid 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-container {
    position: relative;
    height: 15%;
    width: 100%; 
    background-color: #4e4a49;
}

.main-image {
    width: 100%; 
    height: 100%; 

}

.left-image {
    position: absolute;
    left: 5px; 
    width: 100px; 
    height: auto; 
}
h3{
    text-align: center; 
    margin: 0 auto; 
    margin-top: 10px;
}
.content {

    width: 70%; 
    height:100%;
    

}
.form-group input {
    width: 100%;
    height:35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; 
}
.form-group {
    margin-bottom: 15px;
    width: 100%; 
}

.form-group label {
    display: block;
    margin-bottom: 5px;

}
.btn {
    width: 100%; 
    margin-top: 5px;
    padding: 5px 7px;
    border: none;
    border-radius: 4px;
    color: #fff;
    background-color: #4e4a49;
    cursor: pointer;
    box-sizing: border-box; 
}

.btn:hover {
    background-color: black;
}

.error-message {
    color: red;
    margin-top: 10px;
    width: 100%; /* 幅を確保して変動しないようにする */
    box-sizing: border-box; /* ボックスサイズにパディングとボーダーを含める */
    overflow: hidden; /* エラーメッセージがはみ出さないようにする */
    text-align: center; /* エラーメッセージを中央揃えにする */
}


