
.container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 30px;
    /*height: calc(100vh - 100px);*/
    padding: 50px 0;
}

#mobile_img {
    display: none;
    visibility: hidden;
}

.image-container {
    margin-right: 2rem;
}

.image-container img{
    height: 500px;

}

.form-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-right: 50px;
}

.notify {
    width: max-content;
    height: 41px;
    /*padding: 8px 16px;*/
    gap: 8px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
}

.notify img {
    height: 20px;
    margin: 5px;
}

/* waiting.css */
.form-box {
    /*width: 100%;*/
    /*max-width: none;*/
    width: 100%;
    margin: 40px 0;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.form-label {
    display: block;
    font-weight: 00;
    margin-bottom: 8px;
    font-size: .8rem;
    color: #222;
}

.form-input {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 6px;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: #222;
}

.helper-text {
    font-size: 0.72rem;
    color: #757575;
    margin-bottom: 18px;
}

.submit-btn {
    width: 100%;
    padding: 12px 0;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #333;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px 20px;
        justify-content: center;
        gap: 20px;
        margin-top: 0;
    }

    #web_img {
        display: none;
        visibility: hidden;
    }

    #mobile_img{
        display: block;
        visibility: visible;
    }

    .image-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
    }

    .image-container img {
        height: 135px
    }

    .text {
        margin: 0;
        text-align: center;
    }

    .form-container {
        width: 100%;
        padding-right: 0;
        justify-content: center;
        align-items: center;
    }

    .notify {
        font-size: 24px;
    }

    .notify img {
        margin: 5px 0 0;
    }

    .form-box {
        width: 100%;
        padding: 16px;
        margin: 28px 0;
    }
}