/**
* 2026 Labelgrup Networks S.L.
*
*  @author    Labelgrup Networks S.L.
*  @copyright 2026 Labelgrup Networks S.L
*  @license   https://opensource.org/license/afl-3-0-php/ Academic Free License (AFL-3.0)
*/
.lbllandingform-wrapper {
    max-width: 460px;
    margin: 0 auto;
    padding: 32px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    font-family: inherit;
}

.lbllandingform-title {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px;
    color: #1a1a1a;
    text-align: center;
}

.lbllandingform-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: #5c5c5c;
    text-align: justify;
}

.lbllandingform-field {
    margin-bottom: 18px;
}

.lbllandingform-field label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.lbllandingform-field input[type="text"],
.lbllandingform-field input[type="email"] {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    font-size: 15px;
    color: #1a1a1a;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    background-color: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lbllandingform-field input[type="text"]:focus,
.lbllandingform-field input[type="email"]:focus {
    outline: none;
    border-color: #004982;
    box-shadow: 0 0 0 3px rgba(0, 73, 130, 0.12);
}

.lbllandingform-field-checkbox {
    display: flex;
    flex-wrap: wrap;
    margin-top: 22px;
    margin-bottom: 22px;
}

.lbllandingform-field-checkbox .lbllandingform-error {
    flex: 0 0 100%;
    margin-top: 6px;
}

.lbllandingform-field-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: normal;
    text-transform: none;
    line-height: 1.5;
    color: #5c5c5c;
    background-color: transparent;
    padding: 0;
}

.lbllandingform-field-checkbox input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #004982;
    cursor: pointer;
}

.lbllandingform-terms-link {
    color: #004982;
    font-weight: 600;
    text-decoration: underline;
}

.lbllandingform-terms-link:hover {
    text-decoration: none;
}

.lbllandingform-field.lbllandingform-has-error input[type="text"],
.lbllandingform-field.lbllandingform-has-error input[type="email"] {
    border-color: #f54c3e;
}

.lbllandingform-field.lbllandingform-has-error.lbllandingform-field-checkbox {
    border-radius: 4px;
    outline: 1px solid #f54c3e;
}

.lbllandingform-error {
    display: block;
    color: #f54c3e;
    font-size: 12px;
    margin-top: 5px;
}

.lbllandingform-submit {
    display: block;
    width: 100%;
    background-color: #004982;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.05s ease;
}

.lbllandingform-submit:hover {
    background-color: #003663;
}

.lbllandingform-submit:active {
    transform: translateY(1px);
}

.lbllandingform-submit:disabled {
    background-color: #7f9db3;
    cursor: not-allowed;
}

.lbllandingform-message {
    margin-top: 14px;
    font-size: 14px;
    text-align: center;
}

.lbllandingform-message.lbllandingform-message-success {
    color: #01b887;
}

.lbllandingform-message.lbllandingform-message-error {
    color: #f54c3e;
}
