.wtp-registration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wtp-reg-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.wtp-reg-left {
    flex: 1;
    min-width: 300px;
}

.wtp-reg-right {
    flex: 1;
    min-width: 300px;
    padding-top: 60px; /* Align with form start visually */
}

/* Titles */
.wtp-reg-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.wtp-reg-right h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

/* Form Fields */
.wtp-form-group {
    margin-bottom: 20px;
}

.wtp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.wtp-form-group label .required {
    color: #d63031;
    margin-left: 3px;
}

.wtp-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 15px;
    background: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.wtp-form-group input:focus {
    border-color: #333;
}

/* Agreement Text */
.wtp-reg-agreement {
    margin: 30px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.wtp-reg-agreement p {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.wtp-reg-agreement ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wtp-reg-agreement ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.wtp-reg-agreement ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

/* Buttons */
.wtp-btn-register, .wtp-btn-signin {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s;
    width: 100%;
    max-width: 300px; /* Or 100% depending on preference, screenshot looks like block width */
}

.wtp-btn-register {
    width: 100%; /* Full width for register button per screenshot */
    max-width: 100%;
}

.wtp-btn-signin {
    width: auto;
    min-width: 200px;
}

.wtp-btn-register:hover, .wtp-btn-signin:hover {
    background: #000;
    color: #fff;
}

.wtp-link-home {
    display: block;
    margin-top: 20px;
    color: #333;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
}

/* Loader & Messages */
.wtp-btn-register {
    position: relative;
}

.wtp-btn-register.loading .wtp-btn-text {
    opacity: 0;
}

.wtp-btn-register.loading .wtp-btn-loader {
    display: block;
}

.wtp-register-message {
    margin-top: 20px;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}
.wtp-register-message.error {
    display: block;
    background: #ffeaea;
    color: #d63031;
    border: 1px solid #ffdcdc;
}
.wtp-register-message.success {
    display: block;
    background: #eaffea;
    color: #00b894;
    border: 1px solid #dcffdc;
}

/* Responsive */
@media (max-width: 768px) {
    .wtp-reg-row {
        flex-direction: column;
        gap: 40px;
    }
    .wtp-reg-right {
        padding-top: 0;
        border-top: 1px solid #eee;
        padding-top: 40px;
    }
}
