body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}

.test{
    /* display: flex; */
    text-align: right;

}
.container {
    /*background-color: white;*/
    margin-top: 8rem;
    padding: 200px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-group label {
    flex: 1;
    width: 150px;
    
    margin-right: 10px;
    text-align: right;
}

.form-group input,
.form-group select {
    flex: 2;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    
}

.right-align {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px; /* ボックス間の余白を追加 */
}

label {
    margin-bottom: 5px;
}

input, select {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}


.submit_button{
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(135deg, #42a5f5, #478ed1);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}


.back_button{
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    /* background: linear-gradient(135deg, #42a5f5, #478ed1); */
    background-color: #afabab;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    }


button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #00ccff;
    color: white;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}
.hage_button {
    text-align: center;
 }
.hoge_button {
    text-align: center;
 }
 



