/*
 Theme Name:   Novoportal
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/
.kt-inside-inner-col {
    display: flex;
    gap: var(--content-gap);
  padding-block-end: 2em;
}

/* License Login Form Styles */
.license-login-form {
    margin: 0 auto;
    padding: 2.4rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.license-form-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.license-form-description {
    margin-bottom: 25px;
    color: #666;
}

.license-login-form .form-group {
    margin-bottom: 20px;
}

.license-login-form label {
    display: inline-block;
}

.license-login-form input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.license-login-form input[type="text"]:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}

.license-login-form .required {
    color: #e53935;
    margin-left: 3px;
}

.license-login-form .terms-checkbox {
    display: flex;
    align-items: flex-start;
}

.license-login-form .terms-checkbox input[type="checkbox"] {
    margin-top: 4px;
    margin-right: 10px;
}

.license-login-form .terms-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.license-login-form .submit-group {
    margin-top: 30px;
}

.license-login-form .license-submit-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.license-login-form .license-submit-button:hover {
    background-color: #005177;
}

.license-login-form .license-submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.license-validation-error {
    background-color: #ffebee;
    color: #c62828;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
}

.license-validation-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid #2e7d32;
}

/* Horizontal form layout */
.license-login-form.form-horizontal .form-group {
    display: flex;
    align-items: center;
}

.license-login-form.form-horizontal label {
    width: 30%;
    margin-bottom: 0;
    padding-right: 15px;
}

.license-login-form.form-horizontal input[type="text"] {
    width: 70%;
}

.license-login-form.form-horizontal .terms-checkbox {
    margin-left: 30%;
}

.license-login-form.form-horizontal .submit-group {
    margin-left: 30%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .license-login-form.form-horizontal .form-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .license-login-form.form-horizontal label {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .license-login-form.form-horizontal input[type="text"] {
        width: 100%;
    }
    
    .license-login-form.form-horizontal .terms-checkbox {
        margin-left: 0;
    }
    
    .license-login-form.form-horizontal .submit-group {
        margin-left: 0;
    }
}