body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header {
    margin-top: 20px;
    margin-bottom: 20px;
}
#header-text {
    font-size: 18px;
    letter-spacing: 2px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.5;
}


.input-section {
    margin-bottom: 20px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #fff;
}
.continue-btn {
    background-color: #15a9da; 
    color: white; 
    border: none;
    border-radius: 8px; 
    padding: 10px 20px; 
    font-size: 16px; 
    cursor: pointer; 
    margin-top: 25px; 
    display: block; 
    width: fit-content; 
    margin-left: auto; 
    margin-right: auto;
    margin-bottom: -55px;
    transition: background-color 0.3s ease;
}

.continue-btn:hover {
    background-color: #0f7aa3;
}
.confirm-btn {
    width: 300px;
    height: 150px;
    padding: 10px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    background-image: url('image/button-image.png');
    background-size: 100% 100%;
    background-position: center;
}

.confirm-btn:hover {
    opacity: 0.8; 
}

.content {
    margin-top: 0px;
}

#content-text {
    font-size: 18px;
    letter-spacing: 2px;
    padding: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
}

#content-image {
    display: none;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
#content-image-t {
    display: none;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}