@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

html, body {
    margin-bottom: 60px;
    background-color: #F9F9F9;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-family: Arial, sans-serif;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}


.footer {
    background-color: #f8f9fa; 
    padding: 10px;
    text-align: center;
    width: 100%;
    margin-top: auto; 
}
h1 {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: bold; 
    margin-bottom: 20px; 
}


h2 {
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px; 
}

.login-input {
    background-color: #3b3b4f; 
    color: white; 
    border: none; 
    padding: 10px; 
    border-radius: 5px; 
}

    .login-input::placeholder {
        color: #ccc; 
    }

.login-btn {
    background-color: #ff7f00; 
    color: white; 
    padding: 10px 20px; 
    border: none; 
    border-radius: 5px; 
}

    .login-btn:hover {
        background-color: #ff9f30; 
    }


.navbar-dark {
    background-color: #1a1a2e; 
}

.navbar .form-control {
    max-width: 200px; 
}
#appToast {
    position: fixed;
    top: 110px; 
    right: 20px; 
    z-index: 1050; 
}
.order-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.form-section-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

textarea.form-control {
    border-radius: 12px;
    height: 80px;
}


.quantity-input {
    border-radius: 12px;
    width: 80px;
    margin-left: 10px;
}


.form-control:focus {
    border-color: #ff9900;
    box-shadow: 0 0 5px rgba(255, 153, 0, 0.5);
}

.form-group {
    flex: 1;
}


textarea.form-control {
    height: 80px;
    margin-bottom: 10px;
}


.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .form-header h1 {
        margin: 0;
    }


.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #ff9900;
    border-color: #ff9900;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: #ff9900;
    border-color: #ff9900;
}


.form-check-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-check-group {
        grid-template-columns: 1fr;
    }
}

.form-check-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .form-check-item input[type="checkbox"] {
        transform: scale(1.5);
        margin-right: 10px;
    }

.quantity-input {
    width: 80px;
    margin-left: 10px;
}

input.input-validation-error {
    border-color: red;
    background-color: #f8d7da;
}


span.field-validation-error {
    color: red;
}
.brand-logo {
    height: 28px;
    width: auto;
    max-width: 120px;
}

.brand-text {
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.flag {
    width: 30px;
    height: 20px;
    object-fit: cover;
    display: inline-block;
}


@media (max-width: 360px) {
    .brand-text {
        display: none;
    }

    .brand-logo {
        max-width: 90px;
    }
}