/* Generic IBE form styles for all forms using .ibe-form and related classes */

.ibe-form {
    max-width: 480px;
    margin: 30px auto;
    padding: 24px 32px;
    background: #fafbfc;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.ibe-form p {
    margin-bottom: 18px;
}

.ibe-form-control {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    margin-top: 4px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.ibe-form-control:focus {
    border-color: #0073aa;
    outline: none;
}

.ibe-select {
    color: #333;
}

.ibe-select option[value=""] {
    color: #ccc;
}

.ibe-submit,
.btn.one {
    background: #FBC317;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.ibe-submit:hover,
.btn.one:hover {
    background: #f1c339;
}

.ibe-error,
span.error {
    color: #d63638;
    font-size: 13px;
    display: block;
    margin-top: 4px;
}

span.warning,
.ibe-warning {
    color: #e67e22;
    font-size: 13px;
    display: block;
    margin-top: 4px;
}

.ibe-form-control[aria-invalid="true"],
.ibe-form-control.error,
.ibe-select.error {
    border-color: #d63638;
    background: #fff6f6;
}

#ibe-tryitfree-result .success,
.ibe-success {
    color: #27ae60;
    font-weight: bold;
    margin-top: 12px;
}

#ibe-tryitfree-result .wait,
.ibe-wait {
    font-size: 14px;
    color: #FBC317;
    margin-left: 8px;
}