/* Custom styling za prijavu forme */

/* Navbar styling */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.brand-container {
    text-decoration: none;
    color: inherit;
}

.brand-text {
    font-weight: bold;
    font-size: 1.2em;
}

/* Form container styling */
.form-container {
    max-width: 1000px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.form-container-outside {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* ACCORDION STYLING - ФИОЛЕТОВЕ БОЈЕ! */
.accordion {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
}

.accordion-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    font-weight: 600;
    padding: 20px;
    border: none !important;
}

.accordion-button.collapsed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    box-shadow: none !important;
}

.accordion-button:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

.accordion-button::after {
    filter: brightness(0) invert(1) !important;
}

.accordion-body {
    padding: 30px;
    background: #fafafa;
}

/* Custom input styling */
.custom-input {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Icon container styling */
.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    color: #0d6efd !important;
}

/* Input groups styling */
.input-group-text {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    color: #0d6efd;
    font-size: 1.1rem;
    border-right: 0;
    height: calc(3.5rem + 2px);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

/* Button styling */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-success {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%) !important;
    border: none !important;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(135deg, #40c057 0%, #37b24d 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
