.login-container {
    background: white;
    width: 420px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #0f9d8a;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

.form-control {
    height: 45px;
}

.login-btn {
    height: 45px;
    background: #0f9d8a;
    border: none;
    font-weight: 600;
}

.login-btn:hover {
    background: #0c7f70;
}

.extra-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
}

.extra-links a {
    text-decoration: none;
}

.card {
    border-radius: 10px;
}

.form-label {
    font-weight: 500;
}

.tab-content {
    margin-top: 20px;
}

.is-invalid {
    border-color: #dc3545;
}
.errors{
    color: red !important;
    font-size: 13px;
    font-style: italic;
    line-height: 1.5; 
    letter-spacing:0;
}
.btn-outline-secondary {
    background: #ccc;
}

.product-search-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.product-search-form {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.product-search-field {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.product-search-field .form-control {
    height: 42px;
    border-radius: 12px;
    padding-left: 40px;
    border: 1px solid #dbe3ec;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.product-search-field .form-control:focus {
    border-color: #0f9d8a;
    box-shadow: 0 0 0 0.2rem rgba(15, 157, 138, 0.12);
}

.product-search-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #7c8a9a;
    pointer-events: none;
}

.product-search-form .btn {
    min-width: 92px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

@media (max-width: 767px) {
    .product-search-form {
        justify-content: stretch;
    }

    .product-search-field {
        max-width: 100%;
    }

    .product-search-form .btn {
        flex: 1 1 calc(50% - 5px);
    }
}