body {
    background-color: #E2FFFF;
    margin: 0;
    min-height: 100vh;
}
.container {
    background-image: url("img/bg.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    width: 100vw;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-top: 225px;
}
.top {
    background-color: white;
    width: 90%;
    margin: 0 auto;
    border-radius: 25px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 15px;
}
.top-title {
    padding: 5px 20px;
    margin-bottom: -10px;
    display: flex;
}
.top-title img {
    height: 30px;
}
.top-title span {
    font-size: 18px;
    font-weight: 500;
    margin-left: 20px;
    line-height: 30px;
}
.divider {
    border-color: transparent;
    border-bottom-color: #EEEEEE;
    outline: none;
    margin-top: 15px;
}
.step-title {
    margin-bottom: 10px;
    font-size: 15px;
    margin-top: 15px;
}
.step-desc {
    font-size: 12px;
    color: #555;
    padding: 0 20px;
}
.button-style {
    background-color: #10b957;
    border: none;
    height: 38px;
    width: 220px;
    margin-top: 10px;
    color: white;
    border-radius: 5px;
}
.checkbox-label {
    font-size: 13px;
}
.checkbox {
    position: relative;
    top: 2px;
    width: 13px;
    height: 13px;
}
.phone-input {
    height: 30px;
    width: 240px;
    border-color: #50C794;
    outline: none;
    border-style: solid;
    border-radius: 10px;
    padding-left: 10px;
    font-size: 14px;
    margin-bottom: 5px;
}
.bottom {
    background-color: white;
    width: 90%;
    border-radius: 25px;
    text-align: center;
    padding: 10px 0;
    margin: 20px auto;
}
.vip-card {
    width: 150px;
    height: 90px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    border-radius: 10px;
    background-image: url("img/vip.jpeg");
    position: relative;
    margin: 0 auto 10px;
}
.vip-card div {
    position: absolute;
    left: 5px;
    bottom: 5px;
    color: white;
    font-size: 10px;
    font-weight: 600;
    text-align: left;
}
.vip-card div p {
    margin: 0;
}
.bottom-title {
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
}
.bottom-desc {
    font-size: 12px;
    color: #555;
    padding: 0 20px;
    text-align: left;
    margin-left: 20px;
    margin-bottom: 10px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background-color: #fff;
    margin: 225px auto;
    padding: 5px 10px 20px;
    border: 1px solid #888;
    width: 75%;
    max-width: 600px;
    text-align: center;
    border-radius: 10px;
}
.modal button {
    margin-top: 5px;
    background-color: #10b957;
    border: none;
    height: 35px;
    width: 150px;
    color: white;
    border-radius: 5px;
}
.modal h3 {
    font-size: 18px;
    margin: 10px;
}
.modal p {
    font-size: 15px;
}
.info {
    width: 190px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    background-image: url("img/info.jpg");
    position: relative;
    margin: 15px auto 5px;
}