.icon-settings {
    color: #1e293b;
}


.title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.title-garag {
    color: #1e293b;
}


.subtitle {
    color: #475569;
    font-size: 1.125rem;
}

.message {
    display: none;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid;
}

.message svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.message-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.message-success svg {
    color: #16a34a;
}

.message-error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.message-error svg {
    color: #dc2626;
}

.message-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.message-text {
    font-size: 0.875rem;
}

.form {
    background: #F1F8FF !important;
    border-radius: 1rem;
    box-shadow: 2px 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2rem;
}

.form-section {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-section-last {
    border-bottom: none;
    padding-bottom: 0;
}

/*.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-title svg {
    color: #ea580c;
}*/

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.5rem;
}

.form-label svg {
    width: 16px;
    height: 16px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: transparent;
    ring: 2px;
    box-shadow: 0 0 0 2px #4db7ff;
}

.form-input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ef4444;
}

.form-input:valid:not(:focus):not(:placeholder-shown) {
    border-color: #10b981;
}

.form-textarea {
    resize: none;
}

.form-input-file {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px dashed #cbd5e1;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s;
    font-family: inherit;
    background-color: #f8fafc;
    cursor: pointer;
}

.form-input-file:hover {
    border-color: #4db7ff;
    background-color: #fff7ed;
}

.form-input-file:focus {
    outline: none;
    border-color: #4db7ff;
    background-color: white;
}

.file-info {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.image-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-remove {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: #4db7ff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    transition: background 0.2s;
}

.image-preview-remove:hover {
    background: #dc2626;
}

.form-footer {
    padding-top: 1.5rem;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, #3B15FF, #381ac9);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px #3c15ff91;
}

.btn-submit:hover:not(:disabled) {
    background: linear-gradient(to right, #3c15ff9a, #3c15ff8b);
}

.btn-submit:focus {
    outline: none;
    box-shadow: 0 0 0 2px #3714e97f, 0 0 0 4px #2c13a5a1;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-loader {
    display: inline-block;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 1rem;
}

.footer-form {
    text-align: center;
    font-size: 0.875rem;
    color: #475569;
    margin-top: 2rem;
}

@media (max-width: 640px) {
    body {
        padding: 1.5rem 1rem;
    }

    .title {
        font-size: 2rem;
    }

    .form {
        padding: 1.5rem;
    }
}