/* -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- */
/*														HEADINGS												  */
/* -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- */

.stands-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #18819f;
    color: #fff;
    border-radius: 5px;
    height: 60px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    width: 100%;
	margin: 20px auto;
}

.stands-header-center {
    font-size: 1.9rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    white-space: nowrap;
}

/* Media queries */

@media (max-width: 1200px) {
    .stands-header-center {
		font-size: 1.8rem;
    }
}

@media (max-width: 900px) {
    .stands-header-center {
		font-size: 1.7rem;
    }
}

@media (max-width: 600px) {
    .stands-header-center {
		font-size: 1.1rem;
    }
}

/* -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- */
/*                                                     STAND FORM                                                   */
/* -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- */

.stand_form-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%; 
    box-sizing: border-box;
}

.slider-container {
    width: 85%;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.stand_form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 1rem;
    box-sizing: border-box;
}

.stand_form-form-column,
.stand_form-examples-column {
    flex: 1;
    min-width: 300px;
    box-sizing: border-box;
}

.stand_form-examples-column {
    padding-left: 1rem;
    border-left: 2px solid #18819f;
}

.stand_form-form {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.stand_form-form-group {
    margin-bottom: 1.5rem;
}

.stand_form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.stand_form-input[type="text"],
.stand_form-input[type="email"],
.stand_form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
}

.stand_form-textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}

.stand_form-input:focus,
.stand_form-textarea:focus {
    border-color: #18819f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 129, 159, 0.25);
}

.stand_form-btn-submit {
    background-color: #18819f;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.stand_form-btn-submit:hover {
    background-color: #0f6f83;
}

.stand_form-notification {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
    font-size: 0.875rem;
    line-height: 1.5;
    box-sizing: border-box;
}

.stand_form-notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.stand_form-notification.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.stand_form-notification.danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.stand_form-error-message {
    color: #f00;
    font-size: 0.875rem;
}

.stand_form-example-item {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.stand_form-example-item h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: #333;
}

.stand_form-example-item p {
    margin: 0;
    color: #666;
}

@media (max-width: 768px) {
    .stand_form-wrapper {
        flex-direction: column;
        padding: 0;
    }

    .stand_form-examples-column {
        border-left: none;
        border-top: 2px solid #18819f;
        padding-top: 1rem;
    }

    .stand_form-btn-submit {
        padding: 1rem;
        font-size: 18px;
    }

    .stand_form-textarea {
        max-height: 300px;
    }
}