* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.register-container {
    display: flex;
    height: 100vh;
}

.content {
    width: 65%;
    padding: 70px 160px 155px 145px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    color: #7178dc;
}

.header a {
    border-bottom: 1px solid rgba(113, 120, 220, 0.2);
    padding-bottom: 1px;
    text-decoration: none;
    color: #7178dc;
    height: 38px;
}

.header a:hover {
    color: #5a62c9;
}

.header img {
    max-width: 200px;
    height: auto;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.title {
    margin-top: 60px;
    font-weight: 600;
    font-size: 28px;
    line-height: 40px;
    color: #06113c;
}

.description {
    margin: 8px 0 40px;
    font-size: 16px;
    line-height: 32px;
    color: #6a708a;
}

.label {
    margin-top: 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: #06113c;
}

.input-wrapper {
    display: flex;
    width: 100%;
    margin-top: 8px;
}

.input-content {
    width: 100%;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid #ebecef;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(46, 46, 88, .08);
    border-radius: 8px;
    display: flex;
}

.input-content img {
    margin-right: 16px;
    width: 24px;
    height: 24px;
}

.input-wrapper input {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    color: #6a708a;
    border: none;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.input-wrapper input:focus {
    border-bottom-color: #7178dc;
}

.input-wrapper input::placeholder {
    color: #9ba0b1;
}

.input-wrapper div:not(:first-child) {
    margin-left: 16px;
}

.input-wrapper.recaptcha-input {
    max-width: 100px;
    padding: 0;
    margin-left: 15px;
    margin-top: 0;
}

.actions {
    display: flex;
    margin-top: auto;
    align-items: center;
}

.recaptcha {
    margin-right: 15px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #06113c;
}

.recaptcha span {
    font-size: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.btn-next {
    width: 180px;
    padding: 12px;
    text-align: center;
    background: #7178dc;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background-color 0.2s ease;
}

.btn-next:hover {
    background: #5a62c9;
}

.right-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 35%;
    background-color: #f5f5fa;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 64px;
}

.feature img {
    margin-right: 24px;
    width: 32px;
    height: 32px;
}

.feature-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #06113c;
}

.feature-description {
    margin-top: 8px;
    font-size: 14px;
    line-height: 24px;
    color: #6a708a;
    max-width: 342px;
}

/* Modal styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 17, 60, 0.3);
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    position: relative;
    width: 432px;
    min-height: 384px;
    padding: 32px;
    background: #ffffff;
    box-shadow: 0px 32px 82px 16px rgba(46, 46, 88, 0.08);
    border-radius: 16px;
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #06113c;
}

.restaurant {
    position: relative;
    display: flex;
    padding: 16px;
    margin-top: 24px;
    border: 1px dashed rgba(194, 196, 217, 0.5);
    box-sizing: border-box;
    border-radius: 8px;
    background: linear-gradient(134.19deg, #e8e8f0 27.06%, rgba(255, 255, 255, 0) 87.58%);
}

.restaurant img {
    position: relative;
    margin-right: 24px;
    border-radius: 8px;
    width: 48px;
    height: 48px;
}

.restaurant-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.restaurant-name {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #384163;
}

.restaurant-info {
    position: relative;
    font-size: 12px;
    line-height: 16px;
    color: #9ba0b1;
}

.btn-yes {
    margin-top: 24px;
    padding: 16px 0;
    background: #7178dc;
    border-radius: 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background-color 0.2s ease;
}

.btn-yes:hover {
    background: #5a62c9;
}

.btn-no {
    margin-top: 24px;
    padding: 16px 0;
    background: #ffffff;
    border: 1px solid #ebecef;
    box-sizing: border-box;
    border-radius: 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    color: #6a708a;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s ease;
}

.btn-no:hover {
    background: #f5f5fa;
}

/* Responsive styles */
@media (max-width: 768px) {
    .register-container {
        flex-direction: column;
    }

    .content {
        width: 100%;
        padding: 32px 24px 24px;
    }

    .header {
        flex-direction: column;
    }

    .header a {
        font-size: 14px;
        margin-top: 16px;
    }

    .right-panel {
        display: none;
    }

    .title {
        margin-top: 32px;
        font-size: 22px;
        font-weight: 700;
        line-height: 32px;
    }

    .description {
        font-size: 14px;
        line-height: 24px;
    }

    .input-wrapper {
        flex-direction: column;
    }

    .input-wrapper:not(:first-child) {
        margin: 8px 0 0;
    }

    .actions {
        display: block;
        width: 100%;
        margin-bottom: 16px;
    }

    .btn-next {
        width: 100%;
        margin-top: 40px;
    }

    .modal {
        width: 90%;
        min-height: 350px;
        padding: 24px;
    }
}