/* Header atas */
.wds-header-left img {
    height: 28px;
    object-fit: contain;
}
.wds-registration-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f1f2f4;
    padding: 12px 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.wds-header-left {
    font-size: 18px;
    font-weight: bold;
}

.wds-header-center select {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
}

.wds-header-right button {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wds-header-right button:hover {
    background: #e5e7eb;
}

.wds-header-right .dashicons {
    margin-right: 5px;
}

/* Badge "CREATOR SUITE" */
.wds-badge {
    display: inline-block;
    background-color: #d61859;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.wds-badge-suskes {
    display: inline-block;
    background-color: #275c51;
    color: #fff;
    font-size: 15px;
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

/* Subtext */
.wds-subtext {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}
.wds-registration-wrapper {
    max-width: 420px;
    margin: 30px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
}

.wds-registration-wrapper form p {
    margin-bottom: 20px;
}

.wds-registration-wrapper label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

.wds-registration-wrapper input[type="text"],
.wds-registration-wrapper input[type="email"],
.wds-registration-wrapper input[type="url"],
.wds-registration-wrapper input[type="file"],
.wds-registration-wrapper textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.wds-registration-wrapper input[type="text"]:focus,
.wds-registration-wrapper input[type="email"]:focus,
.wds-registration-wrapper input[type="url"]:focus,
.wds-registration-wrapper textarea:focus {
    border-color: #888;
    outline: none;
}

.wds-registration-wrapper textarea {
    resize: vertical;
}

.wds-registration-wrapper input[type="submit"] {
    width: 100%;
    background-color: #2b4e4a;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wds-registration-wrapper input[type="submit"]:hover {
    background-color: #223a37;
}
