/* Trial styles */
.wbls-trial-form-container {
    display: block;
    max-width: 600px;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #cccccc;
}

#wbls-trial-form,
#wbls-trial-download-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width:100%;
    height: auto;
    box-sizing: border-box;
}

#wbls-trial-form input.wbls-trial-user-email {
    width: 100%;
    height: 40px;
    padding: 3px 10px;
    color: #000000;
    box-sizing: border-box;
    border-radius: 5px;
}

#wbls-trial-form span.wbls-trial-form-button {
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    box-sizing: border-box;
    border: 1px solid #0b6cb7;
    background: #0b6cb7;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

#wbls-trial-form span.wbls-trial-form-button:hover {
    color: #ffffff;
    box-sizing: border-box;
    border: 1px solid #000000;
    background: #000000;
}

.wbls-trial-download-button {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    box-sizing: border-box;
    border: 1px solid #0b6cb7;
    background: #0b6cb7;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.wbls-trial-download-button:hover {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    box-sizing: border-box;
    border: 1px solid #000000;
    background: #000000;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

#wbls-trial-license-label {
    font-size: 17px;
    font-weight: 600;
}

#wbls-trial-license-description {
    font-size: 13px;
    font-weight: 700;
    color: #4d900e;
}

#wbls-trial-license {
    font-size: 17px;
    padding: 5px;
    border: 1px solid #cccccc;
}

.wbls-trial-message {
    display: none;
    font-size: 13px;
    font-style: italic;
    font-weight: 500;
}

.wbls-trial-message.wbls-trial-error {
    display: block;
    color: #ff0000;
}

.wbls-trial-message.wbls-trial-success {
    display: block;
    color: #065a1f;
}

/* Button Loader Styles */
.wbls-trial-form-button {
    position: relative;
    transition: all 0.3s ease;
}

.wbls-trial-form-button.loading {
    color: transparent !important;
    pointer-events: none;
}

.wbls-trial-form-button.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: wbls-spin 1s linear infinite;
}

.wbls-trial-form-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes wbls-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}